swiss-apis-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., "@swiss-apis-mcpWhat are the next trains from Geneva to Zurich?"
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.
Swiss APIs MCP Server
MCP (Model Context Protocol) server exposing all major Swiss official public APIs as native tools for any MCP-compatible AI agent.
29 tools — 9 domains — 100% free APIs — zero configuration required for most tools.
What you can ask your AI
"What are the next trains from Geneva-Cornavin to Zurich?"
"What is the altitude of GPS coordinates 45.9763, 7.6586 (Matterhorn)?"
"Find all active companies named 'Nestlé' in the Swiss commercial register."
"Which canton and municipality contain coordinates 46.52, 6.63?"
"Search opendata.swiss for air quality datasets."
"What parliamentary motions on climate change were filed in 2024?"
"Convert LV95 coordinates 2600000, 1200000 to WGS84."
"Which API keys are configured? Set up my ZEFIX credentials."Related MCP server: srgssr-mcp
Tools Reference
Setup (2 tools)
Tool | Description | Auth |
| Check which optional API keys are configured and which are missing | None |
| Store an API key persistently — takes effect immediately, no restart needed | None |
The agent calls
swiss_check_setupfirst, then asks you for any missing keys and stores them viaswiss_set_api_key. Keys are saved in~/.swiss-apis-mcp/keysand survive server restarts.
Transport (4 tools)
Tool | Description | Auth |
| Next departures from any Swiss station | None |
| Train/bus connections between two locations | None |
| Search stations by name or GPS coordinates | None |
| GTFS-RT real-time feeds (delays, positions, alerts) |
|
API: transport.opendata.ch · opentransportdata.swiss
Geography (7 tools)
Tool | Description | Auth |
| Search addresses, communes, POIs, postal codes | None |
| Terrain altitude in meters for any Swiss WGS84 coordinate | None |
| Which canton contains a coordinate | None |
| Which commune contains a coordinate | None |
| Convert WGS84 ↔ LV95 ↔ LV03 | None |
| Official swisstopo map tile URL | None |
| Search features in a GeoAdmin map layer | None |
API: GeoAdmin REST · swisstopo REFRAME · GeoAdmin Height
Health (3 tools)
Tool | Description | Auth |
| Search BAG/OFSP datasets (diseases, mortality, vaccination) | None |
| Metadata and download URLs for a specific health dataset | None |
| Swiss Health Atlas — 100+ cantonal health indicators | None |
API: opendata.swiss/BAG · versorgungsatlas.ch
Politics (3 tools)
Tool | Description | Auth |
| Search motions, postulates, votes across 74+ parliaments | None |
| Parliament members and their activity | None |
| Search Swiss federal legislation via Fedlex SPARQL | None |
API: OpenParlData · Fedlex
Business (4 tools)
Tool | Description | Auth |
| Search Swiss companies in ZEFIX (official commercial register) |
|
| Full company details by UID (CHE-xxx.xxx.xxx) |
|
| SOGC publications for a company (registrations, mergers) |
|
| Search 14,000+ official Swiss government datasets | None |
API: ZEFIX REST · opendata.swiss CKAN
Energy (2 tools)
Tool | Description | Auth |
| SFOE datasets — solar, hydro, EV charging, consumption | None |
| Swissgrid — production mix, cross-border electricity flows | None |
Weather & Environment (3 tools)
Tool | Description | Auth |
| MeteoSwiss OGD datasets (temperature, precipitation, climate) | None |
| SLF avalanche warnings and snow data | None |
| BAFU river levels, flow rates, flood forecasts | None |
API: MeteoSwiss OGD · hydrodaten.admin.ch
Food (2 tools)
Tool | Description | Auth |
| FoodRepo (EPFL) — barcoded Swiss food products + nutrients |
|
| Swiss Food Composition Database (FSVO/OSAV) | None |
API: FoodRepo · naehrwertdaten.ch
Statistics & Finance (4 tools)
Tool | Description | Auth |
| BFS/OFS datasets — population, economy, education | None |
| Swiss National Bank — exchange rates, interest rates, inflation | None |
| Swiss postal codes, streets, communes via OpenPLZ | None |
| SEM migration and asylum statistics | None |
API: BFS · data.snb.ch · openplzapi.org
Installation
1. From npm (recommended)
No clone required. Point your MCP client at the published package:
{
"mcpServers": {
"swiss-apis-mcp": {
"command": "npx",
"args": ["-y", "swiss-apis-mcp"]
}
}
}Or install globally and run the compiled entrypoint:
npm install -g swiss-apis-mcpThen use "command": "swiss-apis-mcp" (and "args": [] if your client requires the field) in the same config shape as above.
2. From source (development)
git clone https://github.com/clement8426/swiss-apis-mcp.git
cd swiss-apis-mcp
npm install
npm run buildUse node /path/to/swiss-apis-mcp/dist/index.js or npx tsx src/index.ts in your MCP config while developing.
3. Optional API keys
Most tools work with zero configuration. Four tools need free credentials:
Key | Service | Register |
| opentransportdata.swiss — GTFS real-time | |
| ZEFIX — Swiss commercial register | |
| ZEFIX — Swiss commercial register | |
| FoodRepo (EPFL) — food products |
Option A — Let the AI agent do it for you:
Ask your agent "check my Swiss APIs setup". It will call swiss_check_setup, identify what's missing, ask you for credentials, and store them automatically via swiss_set_api_key. No restart needed.
Option B — Set them manually before launching:
cp .env.example .env
# Edit .env with your keys4. Test locally (from a clone)
npm run inspectorOpens the MCP Inspector at http://localhost:6274 — run any tool interactively.
Integration
Examples below use npx -y swiss-apis-mcp (published package). From a local clone, replace the args with ["tsx", "/absolute/path/to/swiss-apis-mcp/src/index.ts"] or ["node", "/absolute/path/to/swiss-apis-mcp/dist/index.js"] after npm run build.
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"swiss-apis-mcp": {
"command": "npx",
"args": ["-y", "swiss-apis-mcp"]
}
}
}Cursor
Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (project-level):
{
"mcpServers": {
"swiss-apis-mcp": {
"command": "npx",
"args": ["-y", "swiss-apis-mcp"]
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"swiss-apis-mcp": {
"command": "npx",
"args": ["-y", "swiss-apis-mcp"]
}
}
}Claude Code
claude mcp add swiss-apis-mcp npx -y swiss-apis-mcpContinue.dev
In .continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "swiss-apis-mcp"]
}
}
]
}
}Project structure
swiss-apis-mcp/
├── src/
│ ├── index.ts # Server entry point — loads saved keys, registers all tools
│ └── tools/
│ ├── setup.ts # swiss_check_setup + swiss_set_api_key
│ ├── transport.ts # transport.opendata.ch + opentransportdata.swiss
│ ├── geo.ts # GeoAdmin REST + swisstopo REFRAME + height API
│ ├── health.ts # BAG/OFSP + Versorgungsatlas
│ ├── politics.ts # OpenParlData + Fedlex SPARQL
│ ├── business.ts # ZEFIX REST + opendata.swiss CKAN
│ ├── energy.ts # SFOE/BFE + Swissgrid
│ ├── weather.ts # MeteoSwiss OGD + SLF + BAFU hydro
│ ├── food.ts # FoodRepo (EPFL) + Swiss Food Composition DB
│ └── statistics.ts # BFS/OFS + SNB + OpenPLZ + SEM
├── tests/
│ ├── helpers/mock-server.ts
│ ├── *.test.ts # Unit tests (offline — axios mocked)
│ └── integration/
│ ├── helpers.ts
│ └── *.integration.test.ts # Integration tests (real HTTP calls)
├── .env.example
├── .gitignore
├── package.json
├── tsconfig.json
├── vitest.config.ts
└── vitest.integration.config.tsScripts
Command | Description |
| Start the MCP server via tsx (development) |
| Compile TypeScript to |
| Start compiled server ( |
| Open MCP Inspector UI at localhost:6274 |
| Run unit tests (fast, offline, no network) |
| Run integration tests (real API calls) |
| Run both |
| Unit tests with coverage report |
Adding a new tool
// src/tools/my_domain.ts
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { z } from "zod";
import axios from "axios";
export function registerMyDomainTools(server: McpServer) {
server.tool(
"swiss_my_tool_name",
"Description shown to the AI agent — be precise about what data is returned.",
{
param1: z.string().describe("What this parameter does"),
},
async ({ param1 }) => {
const resp = await axios.get("https://api.swiss.ch/endpoint", {
params: { q: param1 },
});
return {
content: [{ type: "text", text: JSON.stringify(resp.data, null, 2) }],
};
}
);
}Then register in src/index.ts:
import { registerMyDomainTools } from "./tools/my_domain.js";
registerMyDomainTools(server);Resources
Licence
MIT — see LICENSE.
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/clement8426/swiss-apis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server