trafikverket-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@trafikverket-mcpWhat's the weather on E4?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Trafikverket MCP Server
A Model Context Protocol (MCP) server providing real-time access to Swedish road weather, traffic cameras, road conditions, and traffic flow data from Trafikverket (Swedish Transport Administration).
Features
Real-time weather data from 850+ Swedish road weather stations
Traffic camera access with live images and geographic search
Traffic situations including accidents, roadwork, and closures
Traffic flow data with vehicle counts and average speeds
Road surface conditions including ice, snow, and water depth
Geographic proximity search for cameras and weather stations
County-based filtering for regional queries
Related MCP server: mcp-swedish-weather
Available Tools
Weather Tools
get_weather_station
Get current weather data for a specific station by name.
Parameter | Type | Required | Description |
| string | Yes | Station name (e.g., "Kiruna", "Stockholm") |
Returns: Air/road temperatures, humidity, visibility, wind, precipitation, road conditions.
list_weather_stations
List available weather stations with optional filtering.
Parameter | Type | Required | Default | Description |
| string | No | - | Substring filter (case-insensitive) |
| number | No | 100 | Maximum stations to return (1-1000) |
get_weather_stations_near_location
Find weather stations near geographic coordinates.
Parameter | Type | Required | Default | Description |
| number | Yes | - | WGS84 latitude (-90 to 90) |
| number | Yes | - | WGS84 longitude (-180 to 180) |
| number | No | 30 | Search radius in kilometers |
| number | No | 50 | Maximum stations to return |
get_weather_observations
Get historical weather observations for trend analysis.
Parameter | Type | Required | Default | Description |
| number | Yes | - | Measurement point ID |
| number | No | 10 | Maximum observations (1-100) |
Camera Tools
get_cameras
Get traffic cameras with optional filtering.
Parameter | Type | Required | Default | Description |
| string | No | - | Substring filter (e.g., "E4") |
| number | No | - | Swedish county code (1-25) |
| number | No | 10 | Maximum cameras (1-100) |
Returns: Camera locations, GPS coordinates, bearings, photo URLs.
get_cameras_near_location
Find cameras near geographic coordinates.
Parameter | Type | Required | Default | Description |
| number | Yes | - | WGS84 latitude |
| number | Yes | - | WGS84 longitude |
| number | No | 30 | Search radius in kilometers |
| number | No | - | County filter for efficiency |
| number | No | 50 | Maximum cameras (1-1000) |
get_camera_image
Fetch the actual image from a traffic camera.
Parameter | Type | Required | Description |
| string | Yes | Photo URL from |
Returns: Base64-encoded camera image.
Traffic Tools
get_traffic_situations
Get current traffic incidents, accidents, roadwork, and closures.
Parameter | Type | Required | Default | Description |
| string | No | - | Road filter (e.g., "E4", "väg 862") |
| number | No | - | County code (1-25) |
| number | No | 50 | Maximum situations |
Supports SQL-style wildcards: E% matches E4, E20, etc.
get_traffic_flow
Get real-time traffic density and speed data.
Parameter | Type | Required | Default | Description |
| number | No | - | County code (1-25) |
| number | No | - | Trafikverket region (1-6) |
| string | No | - | Filter: "good", "degraded", "bad" |
| number | No | 50 | Maximum measurements |
get_road_conditions
Get road surface conditions including ice, snow, and water.
Parameter | Type | Required | Default | Description |
| string | No | - | Road filter (e.g., "E4") |
| number | No | 50 | Maximum conditions |
Swedish County Reference
Code | County | Code | County |
1 | Stockholm | 14 | Västra Götaland |
3 | Uppsala | 17 | Värmland |
4 | Södermanland | 18 | Örebro |
5 | Östergötland | 19 | Västmanland |
6 | Jönköping | 20 | Dalarna |
7 | Kronoberg | 21 | Gävleborg |
8 | Kalmar | 22 | Västernorrland |
9 | Gotland | 23 | Jämtland |
10 | Blekinge | 24 | Västerbotten |
12 | Skåne | 25 | Norrbotten |
13 | Halland |
Installation
Prerequisites
Node.js 18+
Trafikverket API key (free from api.trafikinfo.trafikverket.se)
Setup
# Clone the repository
git clone https://github.com/hniska/trafikverket-mcp.git
cd trafikverket-mcp
# Install dependencies
npm install
# Build
npm run buildConfiguration
Claude Desktop / Claude Code
Add to your MCP configuration (use absolute paths):
Production (compiled JavaScript):
{
"mcpServers": {
"trafikverket": {
"command": "node",
"args": ["/path/to/trafikverket-mcp/dist/index.js"],
"env": {
"TRAFIKVERKET_API_KEY": "YOUR_API_KEY"
}
}
}
}Development (TypeScript):
{
"mcpServers": {
"trafikverket": {
"command": "npx",
"args": ["tsx", "/path/to/trafikverket-mcp/src/index.ts"],
"env": {
"TRAFIKVERKET_API_KEY": "YOUR_API_KEY"
}
}
}
}Restart Claude after updating configuration.
Usage Examples
# Weather queries
"What's the current weather at Kiruna?"
"List weather stations near Stockholm"
"Find weather stations within 50km of Gothenburg"
# Camera queries
"Show traffic cameras on E4"
"Get cameras near Skellefteå"
"Fetch the image from camera X"
# Traffic queries
"Any traffic incidents on E4?"
"Check road conditions in Norrbotten"
"What's the traffic flow like in Stockholm county?"Development
Scripts
Command | Description |
| Run with tsx (development) |
| Compile TypeScript |
| Run compiled server |
| Run unit tests |
| Run E2E tests against real API |
| Lint code |
| Format with Prettier |
Project Structure
trafikverket-mcp/
├── src/
│ ├── index.ts # Entry point (STDIO transport)
│ ├── server.ts # MCP server (tool handlers)
│ ├── lib/
│ │ ├── trafikverket-client.ts # API client with caching
│ │ ├── xml-builder.ts # XML query construction
│ │ ├── xml-parser.ts # Response parsing
│ │ └── county-mapping.ts # County code lookup
│ └── types/
│ └── trafikverket.ts # TypeScript interfaces
├── design/
│ └── schemas/ # Official Trafikverket XML schemas
└── dist/ # Compiled outputArchitecture
Claude (MCP Client)
↓ JSON-RPC over STDIO
MCP Server
↓ XML Request
Trafikverket API
↓ XML Response
Parser → TypeScript Types
↓ Formatted Response
ClaudeError Handling
Invalid API key: Clear message with registration link
Network errors: Timeout (10s) and connection failures
API errors: Trafikverket error messages forwarded
Validation errors: Zod schema validation with details
Not found: Graceful handling for missing stations/cameras
Resources
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hniska/trafikverket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server