search_keys
Pack: taginfo · Endpoint: https://gateway.pipeworx.io/taginfo/mcp
OSM Taginfo: search OpenStreetMap keys by text, ranked by total usage. Useful for discovering how features are tagged in OSM. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Text to search keys for, e.g. “cuisine”. |
limit | number | no | Max keys to return (default 20). |
Example call
Arguments
{
"query": "cuisine"
}
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":"search_keys","arguments":{"query":"cuisine"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_keys', {
"query": "cuisine"
});
More examples
{
"query": "restaurant",
"limit": 30
}
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.