io.github.OpenCageData/opencage-geocoding-mcp

平台与服务

by opencagedata

面向 OpenCage geocoding API 的 MCP server,用于地理编码、反向地理编码与位置查询。

什么是 io.github.OpenCageData/opencage-geocoding-mcp

面向 OpenCage geocoding API 的 MCP server,用于地理编码、反向地理编码与位置查询。

README

OpenCage Geocoding MCP Server

An MCP (Model Context Protocol) server that provides geocoding capabilities using the OpenCage geocoding API. This server allows you to convert between addresses and geographic coordinates.

PLEASE NOTE: the examples shown here are based on an integration with claude.ai's desktop client. MCP as a concept is supported by other services, but may require a slightly different configuration.

Features

  • Forward Geocoding: Convert addresses or place names to coordinates (latitude/longitude)
  • Reverse Geocoding: Convert coordinates to addresses
  • API Status Monitoring: Check your API usage and rate limits (assuming your penCage account has hard limits).

Prerequisites

  1. Node.js (version 20 or higher)
  2. OpenCage geocoding API Key: Sign up on the OpenCage website to get a free-trial geocoding API key

Installation

  1. Is MCP the right tool?

    This MCP is the right tool for small amounts of geocoding, for example while manually prompting an LLM.

    If however, you want to process larger volumes of data, for example CSV files full of address or coordinates, or connecting to database full of data, it is almost certainly both faster and more affordable to use our command line tools, or have the LLM write a script to call our API directly.

    We offer a markdown-formatted opencage-geocoding-api SKILL file to train your AI on best practices for working with our geocoding API.

  2. Clone the repository. Change into the repository directory

bash

git clone git@github.com:OpenCageData/opencage-geocoding-mcp.git
# or
git clone https://github.com/OpenCageData/opencage-geocoding-mcp.git

cd opencage-geocoding-mcp
  1. Install dependencies:
bash
npm install

This is enough to get the MCP working with Claude Desktop (see below)

If you want to develop the MCP and plan to query the MCP from the command line you will also need to:

  1. Set your OpenCage geocoding API key as an environment variable:
bash
export OPENCAGE_API_KEY="your_opencage_geocoding_api_key_here"
  1. Build the project:
bash
npm run build

Usage

Using within Claude Desktop

Add this configuration to your Claude Desktop config file

On a Mac the config file should be (~/Library/Application Support/Claude/claude_desktop_config.json), but you can also navigate to the file via the menu: Settings > Developer > Edit Config

json
{
  "mcpServers": {
    "opencage-geocoding": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/opencage-geocoding-mcp/build/index.js"],
      "env": {
        "OPENCAGE_API_KEY": "your_opencage_geocoding_api_key_here"
      }
    }
  }
}

Available Tools

Note: the first time you run a command you will need to give Claude permission

Allow external integration

1. geocode-forward

Convert an address or place name to coordinates and information about that location.

Parameters:

  • query (required): The address or place name to geocode
  • countrycode (optional): Restrict to country (ISO 3166-1 alpha-2 code)
  • bounds (optional): Bounding box (min_lon,min_lat,max_lon,max_lat)
  • language (optional): Language for results (e.g., 'en', 'de', 'fr')
  • limit (optional): Max results (1-100, default 10)
  • no_annotations (optional): Exclude location annotations

Example prompts

code
Prompt: "What are the coordinates of Trafalgar Square, London?"
Result: coordinates, timezone, local currency, etc

Prompt: "Where is Les Vans, France? Which Department is it in?"
Result: coordinates, and correct answer that Les Vans is in the Ardèche department

Prompt: "In welchem Bundesland liegt Weimar?"
Result: coordinates, and correct answer that Weimar is in Thüringen

2. geocode-reverse

Convert coordinates to an address and information about that location

Parameters:

  • latitude (required): Latitude coordinate (-90 to 90) in decimal format
  • longitude (required): Longitude coordinate (-180 to 180) in decimal format
  • language (optional): Language for results
  • no_annotations (optional): Exclude location annotations

Example prompts

code
Prompt: "what is the address at 38.8976, -77.0365?"
Result: "1600 Pennsylvania Avenue NW, Washington, DC 20500, United States of America"

Prompt: "Which province are the coordinates 41.38700, 2.16995 in?"
Result: "Coordinates are in Barcelona in the province of Catalonia"

3. get-opencage-info

Check your current API usage and rate limits. NOTE: subscription customers do NOT have hard usage limits. See relevant documentation.

Parameters: None

Returns: Information about remaining requests, rate limits, and reset times.

Available Prompts

geocoding-assistant

A helpful assistant for geocoding tasks. Provides guidance on using the geocoding tools effectively.

Error Handling

The server includes comprehensive error handling:

  • Invalid API keys
  • Rate limit exceeded
  • Network errors
  • Invalid coordinates or addresses
  • API service unavailable

Environment Variables

  • OPENCAGE_API_KEY: Your OpenCage geocoding API key (required)

Troubleshooting

  1. "API key required" error: Make sure the env var OPENCAGE_API_KEY is set
  2. "No results found": Try a more specific or different address format, see the OpenCage guide to query formatting
  3. Rate limit errors: Check your API usage with get-api-status tool
  4. Network errors: Verify internet connection or the public OpenCage status page

Relevant Links

Who is OpenCage GmbH?

<a href="https://opencagedata.com"><img src="opencage_logo_300_150.png"></a>

We run a worldwide geocoding API and geosearch service based on open data. Learn more about us.

We also organize Geomob, a series of regular meetups for location based service creators, where we do our best to highlight geoinnovation. If you like geo stuff, you will probably enjoy the Geomob podcast.

常见问题

io.github.OpenCageData/opencage-geocoding-mcp 是什么?

面向 OpenCage geocoding API 的 MCP server,用于地理编码、反向地理编码与位置查询。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描111.8k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描111.8k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描9.8k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.1k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.3k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
34.9k

评论