Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-geiserx-pumperly-mcp": {
"args": [
"-y",
"pumperly-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Everything is exposed over a single JSON-RPC endpoint (/mcp). LLMs / Agents can: initialize -> readResource -> listTools -> callTool ... and so on.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'pumperly-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked pumperly-mcp against OSV.dev.
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
Global weather API: forecasts, historical data, marine, ski, astronomy and timezone.
MCP Security Weekly
Get CVE alerts and security updates for io.github.GeiserX/pumperly-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A tiny bridge that exposes any Pumperly instance as an MCP server, enabling LLMs to query real-time fuel prices, find stations, plan routes, and geocode locations.
| Type | What for | MCP URI / Tool id |
|---|---|---|
| Resources | Browse configuration, statistics, and exchange rates read-only | pumperly://configpumperly://statspumperly://exchange-rates |
| Tools | Find stations, calculate routes, and geocode locations | find_nearest_stationsget_stations_in_areacalculate_routefind_route_stationsgeocode |
Everything is exposed over a single JSON-RPC endpoint (/mcp).
LLMs / Agents can: initialize -> readResource -> listTools -> callTool ... and so on.
services:
pumperly-mcp:
image: drumsergio/pumperly-mcp:latest
ports:
- "127.0.0.1:8080:8080"
environment:
- PUMPERLY_URL=https://pumperly.com
Security note: The HTTP transport listens on
127.0.0.1:8080by default. If you need to expose it on a network, place it behind a reverse proxy with authentication.
npx pumperly-mcp
Or install globally:
npm install -g pumperly-mcp
pumperly-mcp
This downloads the pre-built Go binary from GitHub Releases for your platform and runs it with stdio transport. Requires at least one published release.
git clone https://github.com/GeiserX/pumperly-mcp
cd pumperly-mcp
# (opti
... [View full README on GitHub](https://github.com/GeiserX/pumperly-mcp#readme)