PluginBench
MCP Server
Maintained

io.github.930m310n/geomelon-mcp MCP Server

io.github.930m310n/geomelon-mcp

What is the io.github.930m310n/geomelon-mcp MCP server?

MCP server for the Geomelon geographic API — stdio and remote HTTP transports

How to install io.github.930m310n/geomelon-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • GEOMELON_API_KEY
    required
    secret

    Your RapidAPI key for Geomelon

  • PORT
    secret

    Port to run HTTP MCP on

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "geomelon-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "geomelon-mcp"
      ],
      "env": {
        "GEOMELON_API_KEY": "<YOUR_GEOMELON_API_KEY>",
        "PORT": "<YOUR_PORT>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "geomelon-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": {
    "geomelon-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "geomelon-mcp"
      ],
      "env": {
        "GEOMELON_API_KEY": "<YOUR_GEOMELON_API_KEY>",
        "PORT": "<YOUR_PORT>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "geomelon-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 geomelon-mcp --env GEOMELON_API_KEY=<YOUR_GEOMELON_API_KEY> --env PORT=<YOUR_PORT> -- npx -y geomelon-mcp

Related MCP servers

MCP server for the Geomelon geographic API — stdio and remote HTTP transports

1
TypeScript
View repository →