tag_stats

Pack: taginfo · Endpoint: https://gateway.pipeworx.io/taginfo/mcp

OSM Taginfo: get usage counts (all / nodes / ways / relations) for a specific OpenStreetMap key=value tag, e.g. amenity=cafe. Keyless.

Parameters

NameTypeRequiredDescription
keystringyesAn OSM key, e.g. “amenity”.
valuestringyesAn OSM value for that key, e.g. “cafe”.

Example call

Arguments

{
  "key": "amenity",
  "value": "cafe"
}

curl

curl -X POST https://gateway.pipeworx.io/taginfo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tag_stats","arguments":{"key":"amenity","value":"cafe"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('tag_stats', {
  "key": "amenity",
  "value": "cafe"
});

More examples

{
  "key": "highway",
  "value": "residential"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "taginfo": {
      "url": "https://gateway.pipeworx.io/taginfo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026