npm @gander-tools/osm-tagging-schema-mcpstdioGPL-3.0updated 4mo ago
This is a Model Context Protocol (MCP) server designed specifically for AI agents and LLM applications. It acts as a bridge between artificial intelligence systems and the comprehensive OpenStreetMap tagging knowledge base provided by the official @openstreetmap/id-tagging-schema library.
This repository was archived by its owner. It still works, but it is not receiving updates.
What can you do with osm tagging schema mcp?
OpenStreetMap Tagging Schema MCP Server
What is this?
This is a Model Context Protocol (MCP) server designed specifically for AI agents and LLM applications. It acts as a bridge between artificial intelligence systems and the comprehensive OpenStreetMap tagging knowledge base provided by the official @openstreetmap/id-tagging-schema library.
Current Status: Production-ready MCP server, actively maintained and continuously improved. The service is deployed and accessible at https://mcp.gander.tools/osm-tagging/.
We welcome your feedback! Have ideas for improvements? Found a bug? Want to discuss features? Please open an issue or start a discussion.
What this is NOT
⚠️ Important clarifications:
- Not a standalone application: This server requires integration with AI systems (like Claude Code or Claude Desktop) to be useful. It has no user interface or web frontend.
- Not for direct human use: Without an AI agent as an intermediary, this tool provides no value to end users. It's designed exclusively for programmatic access by LLM applications.
- Not a public API for general use: The deployed service at mcp.gander.tools is intended for integration with AI agents, not for direct HTTP requests or high-volume automated queries. Please do not attempt to abuse the service with DDoS attacks or excessive traffic.
If you're looking for a user-facing OSM tagging tool, consider iD editor or JOSM instead.
Features
7 MCP Tools organized into 3 categories:
- Tag Query (2 tools): Query tag values and search tags
- Preset Discovery (2 tools): Search and explore OSM presets with detailed configurations
- Validation (3 tools): Validate tags, check for deprecated tags, suggest improvements
📖 Full tool reference: docs/api/
Installation
Using npx (Recommended)
# No installation needed - run directly
npx @gander-tools/osm-tagging-schema-mcp
Using Docker
# Run with stdio transport
docker run -i ghcr.io/gander-tools/osm-tagging-schema-mcp:latest
📖 More options: docs/user/installation.md (source installation, verification, troubleshooting)
Quick Start
With Claude Code CLI
# Add to Claude Code
claude mcp add --transport stdio osm-tagging-schema -- npx -y @gander-tools/osm-tagging-schema-mcp
# Use in conversations
# Ask Claude: "What OSM tags are available for restaurants?"
# Ask Claude: "Validate these tags: amenity=parking, capacity=50"
With Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"osm-tagging-schema": {
"command": "npx",
"args": ["@gander-tools/osm-tagging-schema-mcp"]
}
}
}
📖 Next steps:
- Configuration Guide - Setup for Claude Code/Desktop and custom clients
- Usage Guide - Tool examples and workflows
- API Reference - Complete tool documentation
- Deployment Guide - Production HTTP/Docker deployment
Testing with MCP Inspector
Test and debug the server using the official MCP Inspector:
# Test published package (quickest)
npx @modelcontextprotocol/inspector npx @gander-tools/osm-tagging-schema-mcp
# Test Docker image
npx @modelcontextprotocol/inspector docker run --rm -i ghcr.io/gander-tools/osm-tagging-schema-mcp
The Inspector provides an interactive web UI to test all tools, inspect responses, and debug issues.
📖 Complete inspection guide: docs/development/inspection.md (includes HTTP transport testing)
Development
Built with Test-Driven Development (TDD) and Property-Based Fuzzing:
- Comprehensive test suite (unit + integration) with 100% pass rate
- Property-based fuzz tests with fast-check for edge case discovery
- Continuous fuzzing in CI/CD (weekly schedule + on every push/PR)
npm install # Install dependencies
npm test # Run all tests
npm run test:fuzz # Run fuzz tests
npm run build # Build for production
📖 Development guides: docs/development/development.md | docs/development/fuzzing.md
Contributing
Contributions welcome! This project follows Test-Driven Development (TDD).
- Fork and clone the repository
- Install dependencies:
npm install - Create a feature branch
- Write tests first, then implement
- Ensure all tests pass:
npm test - Submit a pull request
📖 Guidelines: docs/development/contributing.md
Documentation
Quick Navigation
Choose your path:
| I want to... | Go to |
|---|---|
| Install and run the server | Installation Guide |
| Configure with Claude Code/Desktop | Configuration Guide |
| Learn how to use the tools | Usage Guide → API Reference |
| Test and debug the server | Inspection Guide |
| Deploy in production (HTTP/Docker) | Deployment Guide |
| Fix issues or errors | Troubleshooting Guide |
| Contribute to the project | Contributing Guide |
Complete Documentation
User Guides:
- Installation - Setup guide (npx, Docker, source)
- Configuration - Claude Code/Desktop configuration
- Usage - Tool examples and workflows
- API Reference - Complete tool documentation
- Troubleshooting - Common issues and solutions
Developer Docs:
- Contributing - Contribution guidelines (TDD workflow)
- Development - Development setup and debugging
- Inspection - MCP Inspector testing guide
- Fuzzing - Security fuzzing and property testing
- Roadmap - Project roadmap and future features
- Release Process - Release and publishing workflow
Deployment Docs:
- Deployment - HTTP/Docker production deployment
- Security - Security features, provenance, and SLSA
Project Info:
- CHANGELOG.md - Version history
License
GNU General Public License v3.0 - See LICENSE file for details.
Install
Add osm tagging schema mcp to your client. Pick the one you use.
claude mcp add osm-tagging-schema-mcp -- npx -y @gander-tools/osm-tagging-schema-mcpcodex mcp add osm-tagging-schema-mcp -- npx -y @gander-tools/osm-tagging-schema-mcpamp mcp add osm-tagging-schema-mcp -- npx -y @gander-tools/osm-tagging-schema-mcp{
"mcpServers": {
"osm-tagging-schema-mcp": {
"command": "npx",
"args": [
"-y",
"@gander-tools/osm-tagging-schema-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"osm-tagging-schema-mcp": {
"command": "npx",
"args": [
"-y",
"@gander-tools/osm-tagging-schema-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"osm-tagging-schema-mcp","command":"npx","args":["-y","@gander-tools/osm-tagging-schema-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"osm-tagging-schema-mcp": {
"command": "npx",
"args": [
"-y",
"@gander-tools/osm-tagging-schema-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"osm-tagging-schema-mcp": {
"command": "npx",
"args": [
"-y",
"@gander-tools/osm-tagging-schema-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"osm-tagging-schema-mcp": {
"command": "npx",
"args": [
"-y",
"@gander-tools/osm-tagging-schema-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"osm-tagging-schema-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@gander-tools/osm-tagging-schema-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"osm-tagging-schema-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@gander-tools/osm-tagging-schema-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @gander-tools/osm-tagging-schema-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance8/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 113 days ago
- Has a release history
- Repository is not archived
- Licensed GPL-3.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 3.0.1Latest | Dec 1, 2025 |