Connects Claude to OpenStreetMap's Taginfo API for querying tag usage statistics across the OSM database. You get data on how often specific keys or key=value pairs appear, which projects use them, and how tagging patterns evolve. Useful when you're building map tools and need to validate tag schemas, exploring OSM data conventions, or researching tagging best practices before contributing. Runs through Pipeworx's gateway, which means you can use the ask_pipeworx tool to query in plain English instead of calling specific endpoints. Also available as part of their larger 815+ data source collection if you need broader access.
OSM Taginfo MCP — statistics on OpenStreetMap tags (keys and key=value pairs).
Part of Pipeworx — an MCP gateway connecting AI agents to 815+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"taginfo": {
"url": "https://gateway.pipeworx.io/taginfo/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 815+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Taginfo data" })
The gateway picks the right tool and fills the arguments automatically.
MIT