AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Geopy Mcp

mcp-cssnr-geopy-mcp · by cssnr

MCP Server exposing GeoPy data via the Model Context Protocol.

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add mcp-cssnr-geopy-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-cssnr-geopy-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Geopy Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

[](https://github.com/cssnr/geopy-mcp/releases/latest) [](https://pypi.org/project/geopy-mcp/) [](https://github.com/cssnr/geopy-mcp/pkgs/container/geopy-mcp) [](https://github.com/cssnr/geopy-mcp/pkgs/container/geopy-mcp) [](https://pypi.org/project/geopy-mcp/) [](https://github.com/cssnr/geopy-mcp/actions/workflows/build.yaml) [](https://github.com/cssnr/geopy-mcp/actions/workflows/deploy.yaml) [](https://github.com/cssnr/geopy-mcp/actions/workflows/release.yaml) [](https://github.com/cssnr/geopy-mcp/pulse) [](https://github.com/cssnr/geopy-mcp?tab=readme-ov-file#readme) [](https://github.com/cssnr/geopy-mcp?tab=readme-ov-file#readme) [](https://github.com/cssnr/geopy-mcp/graphs/contributors) [](https://github.com/cssnr/geopy-mcp/issues) [](https://github.com/cssnr/geopy-mcp/discussions) [](https://github.com/cssnr/geopy-mcp/forks) [](https://github.com/cssnr/geopy-mcp/stargazers) [](https://cssnr.github.io/) [](https://discord.gg/wXy6m2X8wY) [](https://ko-fi.com/cssnr)

GeoPy MCP

  • [Setup](#setup)
  • [Local](#local)
  • [Remote](#remote)
  • [Development](#development)
  • [Building](#building)
  • [Support](#support)
  • [Contributing](#contributing)

MCP Server exposing GeoPy data via the Model Context Protocol.

Setup

This can be run in [Local](#local) CLI mode or [Remote](#remote) server mode.

Local

In CLI mode using uv.

View Config - Local uv

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "geopy": {
      "type": "local",
      "command": ["uvx", "geopy-mcp"],
      "enabled": true
    }
  }
}

In CLI mode using Python pip.

pip install geopy-mcp

View Config - Local Python

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "geopy": {
      "type": "local",
      "command": ["geopy-mcp"],
      "enabled": true
    }
  }
}

Remote

With Docker run.

docker run --rm -p 80:8000 ghcr.io/cssnr/geopy-mcp:latest

With Docker Compose.

services:
  app:
    image: ghcr.io/cssnr/geopy-mcp:latest
    ports:
      - '80:8000'

With Python from source.

uv sync
uv run uvicorn geopy_mcp.server:app --app-dir src --host 0.0.0.0 --port 8000

View Config - Remote

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "geopy": {
      "type": "remote",
      "url": "http://localhost/mcp",
      "enabled": true
    }
  }
}

Note: Set the url to the host you are running the server on.

[](https://render.com/deploy?repo=https://github.com/cssnr/geopy-mcp)

For a Docker Swarm + Traefik example see the docker-compose-swarm.yaml.

For a Portainer Deploy workflow see the .github/workflows/deploy.yaml.

Development

Sync project.

uv sync

Run local server.

run cli

Run remote server (live reload).

run dev

Point your client to: http://localhost:8000/mcp

Run remote Docker Compose (live reload).

run compose

Point your client to: http://localhost/mcp

You can set the PORT environment variable.

Building

Docker Image

To build and test the docker image run.

bash build.sh
docker compose up

Point your client to: http://localhost/mcp

Python Package

This builds the bdist and wheel, if you have a use for it...

run build

Support

If you run into any issues or need help getting started, please do one of the following:

  • Report an Issue:
  • Q&A Discussion:
  • Request a Feature:
  • Chat with us on Discord:

[](https://github.com/cssnr/geopy-mcp/issues/new?template=1-feature.yaml) [](https://github.com/cssnr/geopy-mcp/issues) [](https://github.com/cssnr/geopy-mcp/discussions) [](https://discord.gg/wXy6m2X8wY)

Contributing

Please consider making a donation to support the development of this project and additional open source projects.

[](https://ko-fi.com/cssnr)

For a full list of current projects visit: https://cssnr.github.io/

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.