Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

geolabel-mcp MCP server](https://glama.ai/mcp/servers/geolabel/geolabel-mcp/badges/score.svg)](https://glama.ai/mcp/servers/geolabel/geolabel-mcp) 🐍 ☁️ - GPS coordinates to AI-ready location context β€” returns place name, stable category (gym, supermarket,...

README.md

GeoLabel MCP Server

<!-- mcp-name: io.github.TylerCoxDruin/geolabel -->

Turn GPS coordinates into AI-ready location context β€” for Claude Desktop, Claude Code, and any MCP-compatible assistant.

What it does

Send coordinates. Get back a place name, category, and real-time opening hours:

{
  "label": "Walmart",
  "category": "supermarket",
  "is_open": true,
  "closes_at": "23:00",
  "opening_hours": "Mo-Su 06:00-23:00"
}

Claude can then answer: "You're at Walmart, which closes in 47 minutes."

---

Quick setup

1. Get a GeoLabel API key

Free at geolabel.dev β€” 100 requests/day, no credit card required.

2. Add to your agent

Pick your client below.

---

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "geolabel": {
      "command": "uvx",
      "args": ["geolabel-mcp"],
      "env": {
        "GEOLABEL_API_KEY": "glk_your_key_here"
      }
    }
  }
}

Restart Claude Desktop. The GeoLabel tool will appear in the tools list.

Claude Code

claude mcp add geolabel -- uvx geolabel-mcp
export GEOLABEL_API_KEY=glk_your_key_here

Hermes Agent

Edit ~/.hermes/config.json:

{
  "mcpServers": {
    "geolabel": {
      "command": "uvx",
      "args": ["geolabel-mcp"],
      "env": {
        "GEOLABEL_API_KEY": "glk_your_key_here"
      }
    }
  }
}

See Hermes Agent MCP docs for more.

OpenClaw

# Register the server
openclaw mcp set geolabel \
  --command uvx \
  --args geolabel-mcp \
  --env GEOLABEL_API_KEY=glk_your_key_here

# Verify it's registered
openclaw mcp list

See OpenClaw MCP docs for more.

---

3. Use it

You: I'm at 41.8827, -87.6233 β€” what's here and is it open?

Agent: You're at Planet Fitness (a gym). It's currently open and closes
       at 11:00 PM tonight β€” you have about 3 hours left.

---

Tools

get_location_label

Identifies the nearest named place within radius metres of the given coordinates.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | lat | float | required | Latitude (-90 to 90) | | lng | float | required | Longitude (-180 to 180) | | radius | int | 100 | Search radius in metres (max 500) |

Response fields:

| Field | Type | Description | |-------|------|-------------| | place | string \| null | Raw venue name from OpenStreetMap | | label | string | Clean, display-ready name | | category | string \| null | Stable type: gym, supermarket, restaurant, etc. | | distance_meters | float \| null | Distance from your coordinates to the place | | is_open | bool \| null | true open Β· false closed Β· null no hours data | | opens_at | string \| null | Next opening time HH:MM (when closed) | | closes_at | string \| null | Today's closing time HH:MM (when open) | | opening_hours | string \| null | Raw OSM opening_hours string | | cached | bool | Served from 10-min cache; hours always recalculated live |

---

Alternative installation

# pip
pip install geolabel-mcp

# run directly
GEOLABEL_API_KEY=glk_xxx geolabel-mcp

Claude Code

claude mcp add geolabel -- uvx geolabel-mcp

Then set your key:

# add to your shell profile or .env
export GEOLABEL_API_KEY=glk_your_key_here

---

Configuration

| Variable | Required | Description | |----------|----------|-------------| | GEOLABEL_API_KEY | Yes | Your GeoLabel API key | | GEOLABEL_BASE_URL | No | Override API base URL (default: https://api.geolabel.dev) |

---

Privacy

GeoLabel strips coordinates from all server logs before they touch disk. No movement history is stored. Data is processed in real-time and immediately discarded. Full privacy policy β†’

---

License

MIT

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.