MCP server proxy for the Dutch OVapi public transport APIs
{
"mcpServers": {
"ovapi-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server proxy for the Dutch OVapi public transport APIs
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 3 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Ovapi Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that proxies the Dutch OVapi public transport APIs, with fuzzy stop search powered by Postgres.
| Tool | Description |
|------|-------------|
| get_departures | Get real-time departures by stop name. Fuzzy-searches the database and fetches departures for matching stops. |
| search_stops | Search for stops by name (e.g. "Amsterdam Centraal", "Schiphol"). Returns TPC codes, names, and coordinates. |
| lines | List all public transport lines, or get details for a specific line. |
| journey | Get journey/vehicle information including location data. |
Add to your Claude Desktop MCP config:
{
"mcpServers": {
"ovapi": {
"type": "sse",
"url": "https://ovapi-mcp-server.pqapp.dev/sse"
}
}
}
Then ask Claude things like:
go test -v -race ./... # run tests
go fmt ./... # format
go vet ./... # lint
The stop search database is populated by scraping all ~38K timing point codes from OVapi's /tpc/ endpoint:
DATABASE_URL=postgres://... go run ./cmd/scrape
pg_trgm for fuzzy stop name searchMIT