What is the io.github.930m310n/mcp MCP server?
MCP server for the Geomelon geographic API — stdio and remote HTTP transports
How to install io.github.930m310n/mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
GEOMELON_API_KEYrequiredsecretYour RapidAPI key for Geomelon
PORTsecretPort to run HTTP MCP on
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"geomelon-mcp"
],
"env": {
"GEOMELON_API_KEY": "<YOUR_GEOMELON_API_KEY>",
"PORT": "<YOUR_PORT>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"geomelon-mcp"
],
"env": {
"GEOMELON_API_KEY": "<YOUR_GEOMELON_API_KEY>",
"PORT": "<YOUR_PORT>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"geomelon-mcp"
],
"env": {
"GEOMELON_API_KEY": "<YOUR_GEOMELON_API_KEY>",
"PORT": "<YOUR_PORT>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"geomelon-mcp"
],
"env": {
"GEOMELON_API_KEY": "<YOUR_GEOMELON_API_KEY>",
"PORT": "<YOUR_PORT>"
}
}
}
}Claude Code
claude mcp add mcp --env GEOMELON_API_KEY=<YOUR_GEOMELON_API_KEY> --env PORT=<YOUR_PORT> -- npx -y geomelon-mcpRelated MCP servers
io.github.930m310n/geomelon-mcp
Maintained
MCP server for the Geomelon geographic API — stdio and remote HTTP transports
1
View repository →TypeScript