mcp-hsl
An MCP server exposing Greater Helsinki public transport data from Digitransit, enabling LLM hosts to answer live transit queries, plan journeys, and fetch stop departures via natural language.
README
mcp-hsl
MCP server exposing Greater Helsinki (HSL) public-transport data from Digitransit. Covers Helsinki, Espoo, Vantaa, Kauniainen, Kerava, Kirkkonummi, Sipoo, Siuntio, and Tuusula.
Lets an LLM host (Claude Desktop, Claude Code, Cursor, etc.) answer live-transit questions like "next tram from Kamppi to Töölö" or "plan a trip from Otaniemi to Kallio at 5pm".
Prerequisites
- Node.js 20.6 or newer (uses native
--env-file). - A free Digitransit subscription key (see below).
Getting a Digitransit API key
Digitransit publishes HSL data through an Azure API Management portal. The key is free and easy to obtain.
- Go to https://portal-api.digitransit.fi/ and click Sign up (top rig ht).
- Verify your email and sign in.
- Open Products → pick Digitransit API (the free tier).
- Click Subscribe, give the subscription a name (e.g.
mcp-hsl), and confirm. - Under Profile → Subscriptions, reveal the Primary key. That's you
r
DIGITRANSIT_SUBSCRIPTION_KEY.
The free tier has generous rate limits (see https://digitransit.fi/en/developers/api-registration/ for current numbers). Keep the key private — treat it like a password.
Install
mcp-hsl is a standard stdio MCP server, so any MCP-compatible host can use it — Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, Zed, and so on.
Option A — CLI (fastest, if your host has one)
# Claude Code
claude mcp add hsl-transit -e DIGITRANSIT_SUBSCRIPTION_KEY=your-key -- npx -y mcp-hsl
Other hosts (Cursor, VS Code) offer GUI-driven "Add MCP server" flows in their command palettes — same fields as the JSON below.
Option B — Config file
Add this entry to your host's MCP config:
{
"mcpServers": {
"hsl-transit": {
"command": "npx",
"args": ["-y", "mcp-hsl"],
"env": {
"DIGITRANSIT_SUBSCRIPTION_KEY": "your-key-here"
}
}
}
}
Where to put it:
| Host | Config path | Wrapper key |
|---|---|---|
| Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json |
mcpServers |
| Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |
mcpServers |
| Claude Code | ~/.claude.json (or use claude mcp add) |
mcpServers |
| Cursor | ~/.cursor/mcp.json (global) or .cursor/mcp.json (project) |
mcpServers |
| VS Code (Copilot) | .vscode/mcp.json (project) or user settings |
servers |
VS Code uses
"servers"instead of"mcpServers"— otherwise the entry is identical.
Restart the host after editing the config. The server should appear as Connected / Ready.
Local development
git clone <this-repo>
cd mcp-hsl
npm install
cp .env.example .env # then fill in DIGITRANSIT_SUBSCRIPTION_KEY
npm run build
Run against your own build:
{
"mcpServers": {
"hsl-transit": {
"command": "node",
"args": [
"--env-file=/absolute/path/to/mcp-hsl/.env",
"/absolute/path/to/mcp-hsl/build/stdio.js"
]
}
}
}
The server exits immediately with a clear message if DIGITRANSIT_SUBSCRIPTION_KEY is missing.
Tools
| Name | Purpose | Key inputs |
|---|---|---|
geocode |
Place / address → coordinates | query, limit |
plan_journey |
Route between two places | origin, destination, optional modes, departureTime |
stop_departures |
Next departures from a stop | stopId OR stopName, numberOfDepartures |
All three call Digitransit's HSL routing API. plan_journey geocodes both endpoints internally; stop_departures looks up a stop by name if you don't have the HSL ID.
plan_journey modes
Filter transit modes with the modes array: BUS, TRAM, RAIL, SUBWAY, FERRY. Omit to allow any. departureTime is an ISO 8601 timestamp with offset (e.g. 2026-08-13T17:00:00+03:00); defaults to now.
stop_departures name lookup
HSL stop IDs look like HSL:1140447. If you pass stopName and it matches multiple stops (e.g. Kamppi has several platform IDs), the tool returns the candidate list — the LLM then re-calls with the specific stopId.
Example prompts
- "Geocode 'Kamppi metro station' in Helsinki."
- "When are the next departures from Kamppi?"
- "Plan a tram journey from Kamppi to Töölö."
- "Get me from Otaniemi to Kallio around 5pm today, no bus."
- "Kamppista Töölöön seuraava ratikka?"
Design notes
- Transport-agnostic core.
src/server.tsexposes abuildServer()factory that registers tools without touching any transport. To add HTTP later, add a new entry point that callsbuildServer()and wires it toStreamableHTTPServerTransport. - Output for LLMs. Tool results are compact plain-text tables/blocks — enough for the model to reason over without wasting tokens on raw GraphQL responses.
- Multilingual. Digitransit returns Finnish and Swedish names side by side; the LLM handles user-facing language.
- Real-time. Journey legs and departures include real-time state (
SCHEDULED,UPDATED,CANCELED) so the model can distinguish "on time" from "delayed 3 min".
Attribution
Data © Helsinki Region Transport (HSL) and other producers, provided by Digitransit under Creative Commons BY 4.0. This project is not affiliated with HSL or Digitransit.
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.