Geolocation tools (reverse geocoding, ip lookup, etc) using Jeleo Geolocation API
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"geolocation": {
"args": [
"run",
"-i",
"--rm",
"geolocation-mcp",
"-apikey",
"YOUR_API_KEY",
"-url",
"https://www.jeleo.zone.id/api/geolocation"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This is a Model Context Protocol (MCP) server that acts as a wrapper around the GeoLocation API. It provides tools for LLMs (like Claude) to perform fast reverse geocoding and batch reverse geocoding (via IP and coordinates).
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in maps
A Model Context Protocol (MCP) server providing TomTom's location services, search, routing, and traffic data to AI agents.
Real-time BART departures, trip planning, fares, stations, and advisories.
MCP server for the VesselAPI — maritime vessel tracking, port events, emissions, and navigation data
Fair meeting point discovery for AI agents with isochrone-based travel time fairness
MCP Security Weekly
Get CVE alerts and security updates for io.github.wtronk/geolocation-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This is a Model Context Protocol (MCP) server that acts as a wrapper around the GeoLocation API. It provides tools for LLMs (like Claude) to perform fast reverse geocoding and batch reverse geocoding (via IP and coordinates).
reverse_geocode: Get rich location metadata (city, country, population metrics, economic data) from latitude/longitude coordinates.batch_reverse_geocode: Resolve a list of multiple geographic coordinates in a single request.The MCP server requires an API Key and an API Base URL. You can retrieve them from https://jeleo.zone.id/. They are provided to the server as command-line arguments:
-apikey: Your Jeleo API Key-url: Base URL for the Jeleo API (default: https://www.jeleo.zone.id/api/geolocation)The server runs on standard input/output (stdio), which is standard for MCP. It's designed to be run as an executable or via Docker.
To build the Docker image:
docker build -t geolocation-mcp .
To run it locally via Docker:
docker run -i --rm geolocation-mcp -apikey YOUR_API_KEY
If you have Go installed, you can build and run it directly:
go build -o geolocation-mcp main.go
./geolocation-mcp -apikey YOUR_API_KEY
If you have published the image to a container registry, or just using it locally, add it to your claude_desktop_config.json:
Local Docker:
{
"mcpServers": {
"geolocation": {
"command": "docker",
"args": ["run", "-i", "--rm", "geolocation-mcp", "-apikey", "YOUR_API_KEY", "-url", "https://www.jeleo.zone.id/api/geolocation"]
}
}
}