Scraper MCP Installation Guide
Claude Desktop
Connect Geonode Scraper MCP to Claude Desktop using mcp-remote.
Geonode authenticates with an API-key header, so Claude Desktop connects through the mcp-remote bridge. The built-in "Add custom connector" UI is built for OAuth servers and has no field for a custom header.
Step 1 — Open Claude Desktop config
- Open Claude Desktop → Settings → Developer → Edit Config.
- This opens
claude_desktop_config.json.
Step 2 — Add the Geonode server
Add the Geonode server block to mcpServers:
{
"mcpServers": {
"geonode-scraper": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://scraper.geonode.io/mcp",
"--header",
"X-Api-Key:${GEONODE_API_KEY}"
],
"env": {
"GEONODE_API_KEY": "YOUR_API_KEY"
}
}
}
}Step 3 — Restart and verify
- Save the file and fully restart Claude Desktop.
- The Geonode tools show up under the tools menu in a new chat.
mcp-remote requirements
mcp-remote needs Node.js installed on your machine. The
X-Api-Key:${GEONODE_API_KEY} value has no space after the colon on purpose,
since mcp-remote reads everything after the first colon as the header value.