Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
🐍 PyPI

GHSA-52cq-7v8r-62c6

gmaps-mcp's unauthenticated HTTP transport allows unlimited Google Maps API calls at operator expense

Published
May 8, 2026
Updated
May 8, 2026
Affected
1 pkg
Patched
1 / 1
Exploits
None indexed

Blast Radius

1 pkg affected
🐍gmaps-mcp

Real-time download stats are indexed for npm and PyPI packages. This vulnerability affects PyPI packages — download data is not available via public APIs for these ecosystems.

Description

Unauthenticated HTTP Transport Allows Unlimited Google Maps API Calls at Operator Expense

The gmaps-mcp codebase was reviewed at commit e671db68c804c9e67d51582d3280839ffa65f127 and three issues worth flagging were discovered — one high-severity, one medium, one structural. There were no preexisiting CVEs for this package yet and the repository had no prior security issues.

The primary issue is that the HTTP transport in server.py skips authentication entirely when MCP_API_KEY is not set — which is the default, since .env.example ships the key as a blank value. Any unauthenticated caller who knows the server's public URL can invoke all six tools and generate live, billed Google Maps API requests against the operator's key. Because the README explicitly instructs operators to expose the server via ngrok (ngrok http 8000, then point MCP clients at the ngrok URL), this configuration gets deployed internet-facing as a matter of normal usage.

Affected files and exact lines:

src/google_maps_mcp/server.py, lines 186–192:

expected_key = os.getenv("MCP_API_KEY")

if not expected_key:
    # If no MCP_API_KEY is set, allow all requests (development mode)
    return await call_next(request)

if api_key != expected_key:
    return JSONResponse(
        {"error": "Invalid or missing API key. Provide X-API-Key header."},
        status_code=401
    )

run.py lines 37 and 38 bind to 0.0.0.0:8000 by default (MCP_HOST=0.0.0.0, MCP_PORT=8000). No rate-limiting middleware exists anywhere in the codebase — not in the middleware stack, not in GoogleMapsClient, not in the tool handlers.

Attack model: operator deploys with default config (blank MCP_API_KEY), exposes via ngrok per the README instructions, attacker discovers the ngrok URL through ngrok's public endpoint scan surface or via a targeted test of shared URLs. No credentials needed to call the server.

PoC — reproduces from the default config:

# Start with default .env.example (MCP_API_KEY blank/unset)
export GOOGLE_MAPS_API_KEY=<operator_key>
python run.py  # binds 0.0.0.0:8000

# From attacker machine — no X-API-Key header needed:
curl -X POST http://<server>:8000/mcp/ \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geocode","arguments":{"address":"Times Square New York"}}}'
# Returns geocoding results. Request billed to operator's GCP project.

The financial harm is real and accumulates fast. Google's $200/month free credit exhausts in roughly 3 hours at Places API pricing (~$17/1,000 requests) with a sustained 1 req/sec flood. More practically: any developer testing the ngrok URL, sharing it in a project thread, or posting it in a demo context creates a window where anyone with the link can silently drain quota. The attacker doesn't need the GOOGLE_MAPS_API_KEY value — they only need the MCP server URL.

Fix — three concrete changes, no new dependencies:

  1. In HTTP transport mode, refuse to start if MCP_API_KEY is unset. Add a startup check in server.py (or run.py) that exits with a clear message if the environment variable is blank when the transport is HTTP. Something like:
    if transport == "http" and not os.getenv("MCP_API_KEY"):
        raise SystemExit(
            "ERROR: MCP_API_KEY must be set before starting the HTTP server. "
            "Unset key allows unauthenticated access to all Google Maps API calls."
        )
    
  2. Update .env.example — change MCP_API_KEY= to a comment that makes the requirement explicit: # Required for HTTP transport. Generate with: python -c "import secrets; print(secrets.token_hex(32))"
  3. Add a one-line warning to the README before the ngrok step: "Before running ngrok, set MCP_API_KEY in your .env. Without it, anyone with the URL can make unlimited Google Maps API calls billed to your account."

A token-bucket rate limiter (e.g., slowapi, which is already compatible with Starlette/FastAPI-style apps) would add another layer, but the auth fix is the critical path.


The second issue is in src/google_maps_mcp/client.py at line 130:

url = f"https://places.googleapis.com/v1/places/{place_id}"

place_id comes from the MCP tool caller with no format validation and is interpolated verbatim into the URL path. httpx does not encode / or ? in f-string URLs — only when using a params= dict. A crafted place_id like ":searchText?textQuery=attacker-query" produces https://places.googleapis.com/v1/places/:searchText?textQuery=attacker-query, which routes to the text search endpoint instead of the details endpoint, with attacker-controlled query content. Injection is bounded to places.googleapis.com since the host is hardcoded, but it lets an attacker hit different endpoint semantics within that namespace and potentially force higher-cost API calls.

Fix:

import re

PLACE_ID_PATTERN = re.compile(r'^[A-Za-z0-9_\-]+(/[A-Za-z0-9_\-]+)?$')

async def get_place_details(self, place_id: str) -> dict:
    if not PLACE_ID_PATTERN.match(place_id):
        raise ValueError(f"Invalid place_id format: {place_id!r}")
    url = f"https://places.googleapis.com/v1/places/{place_id}"
    ...

Google Place IDs are alphanumeric strings with an optional places/ segment prefix. That pattern eliminates all path and query injection.


The third issue is structural and currently benign, but worth flagging given the package is installable via PyPI as gmaps-mcp.

The repository ships .claude/skills/google-maps-mcp/SKILL.md at the repo root. Claude Code and any harness using the same skill auto-discovery path pattern will auto-load this file as a system-level instruction when an agent clones the repository or opens the directory after install. The current content is legitimate usage documentation, so there's no active harm — but the file is a persistent injection surface. A future commit to SKILL.md could plant arbitrary instructions (exfiltrate environment variables, call an attacker-controlled URL before each tool response, silently modify output) that would enter agent context without any visible indicator for every developer or agent that installs gmaps-mcp.

The exposure is broader than it would be for a private repo: PyPI install means the audience includes every Claude Code, Cursor, and similar agent-enabled IDE user who pulls the package and opens it in an agent context.

Fix: Move the skill documentation out of the auto-load path. Rename it to docs/claude-skill-reference.md (not auto-loaded), or remove it and note in the README that users who want Claude Code skill integration should add the file locally. Either approach preserves the UX without leaving a standing injection surface in the install tree.

Affected Packages

1 total 1 fixed
EcosystemPackageVulnerable rangeFix
🐍PyPIgmaps-mcpall versions0.1.3

Detection & mitigation playbook

Open-source dependency
  1. Detect

    Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for gmaps-mcp. O3's reachability analysis confirms whether the vulnerable code path is actually invoked in your application, so you act on real exposure instead of every transitive match.

  2. Fix

    Update gmaps-mcp to 0.1.3 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-52cq-7v8r-62c6 is resolved across your whole dependency graph.

  3. Workarounds

    If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.

  4. How O3 protects you

    O3 pinpoints whether GHSA-52cq-7v8r-62c6 is reachable in your code and exactly where to fix it, then blocks exploitation in production at runtime until the patched version is deployed.

Tailored to GHSA-52cq-7v8r-62c6. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.

Frequently Asked Questions

## Unauthenticated HTTP Transport Allows Unlimited Google Maps API Calls at Operator Expense The `gmaps-mcp` codebase was reviewed at commit `e671db68c804c9e67d51582d3280839ffa65f127` and three issues worth flagging were discovered — one high-severity, one medium, one structural. There were no preexisiting CVEs for this package yet and the repository had no prior security issues. The primary issue is that the HTTP transport in `server.py` skips authentication entirely when `MCP_API_KEY` is not set — which is the default, since `.env.example` ships the key as a blank value. Any unauthenticate
O3 Security · Impact-Aware SCA

Is GHSA-52cq-7v8r-62c6 in your dependencies?

O3 detects GHSA-52cq-7v8r-62c6 across PyPI dependencies and uses function-level reachability to confirm whether the vulnerable code path is actually reachable — not just present. No false positives.