MCP server for the simap.ch Swiss public procurement API — all cantons, read-only
Project description
Part of the Swiss Public Data MCP Portfolio — open-source MCP servers connecting AI agents to Swiss public and open data.
This is a private project. It is independent of any employer or institutional affiliation and represents no official position of any authority.
swiss-procurement-mcp
MCP server for Swiss public procurement — read access to the official simap.ch API, covering all cantons and the Confederation, updated intraday.
🎯 Anchor demo query
«Which school-building tenders did the City of Zurich publish in 2026, which BKP construction categories do they concern, and who are the procuring offices?»
A single search_procurements_detailed(query="Schulhaus", canton="ZH", published_from="2026-01-01")
returns the leading tenders already expanded with their BKP construction codes and
procuring offices — connecting procurement to school-building planning in one call
(optionally paired with search_construction_codes to resolve a category).
Why this server exists
Swiss public procurement is published on simap.ch. The platform's web UI is
searchable by hand, but the amtsblatt-mcp
server only reaches the three cantons (AR, BS, TI) that still mirror tenders to
the Amtsblattportal — Zurich among the missing.
simap closes that gap: it operates a documented OpenAPI 3 read API (v1.5.1)
whose search and detail endpoints are marked security: None and are callable
without authentication. This server wraps exactly those read endpoints.
Mnemonic: The web UI is the front door; the API is the loading dock. Probe the dock.
Architecture decision
Architecture A (live API only, short-lived cache).
- The public search, detail and reference endpoints are unauthenticated and were confirmed working live (2026-07-26).
- Publications change intraday, so the cache TTL is deliberately short (30 min).
- The ~200 write /
my// OIDC-protected endpoints (publishing tenders, submitting offers) are out of scope — this server never writes.
Every response carries source and provenance (live_api / cached /
degraded). Upstream failure yields a degraded envelope, never a silent empty
list.
Live-probe findings (2026-07-26)
| Endpoint | Auth | Result |
|---|---|---|
/publications/v2/project/project-search |
none | 20 hits, canton filter, current-day |
/publications/v1/.../publication-details/... |
none | full record: criteria, deadlines, codes |
/publications/v1/publication/{id}/past-publications |
none | project lifecycle |
/codes/v1/cpv/search |
none | CPV full-text search |
/codes/v1/{bkp,npk,ebkp-h,ebkp-t,oag,cpc}/search |
none | Swiss construction codes |
/procoffices/v1/po/public |
none | ~1 MB office list (client-side filter) |
/cantons/v1, /countries/v1 |
none | reference data |
Known findings
- Wrong host, wrong conclusion. The read API lives under
www.simap.ch/api. Thesimap.ch/deweb UI is a separate SSR app that exposes none of it — probing the UI produced an earlier, mistaken "no API" verdict. langis mandatory on project-search. Omitting it is HTTP 400 (errorCodeE0025), not an empty result. The client injects a default.- Award is not "award".
newestPubTypes=awardreturns HTTP 400. Awards are split by procedure:award_tender,award_study_contract,award_competition,direct_award. Thesearch_awardstool queries all four. - Canton ids are bare.
ZH, notCH-ZH. Passing an ISO subdivision code silently matches nothing; this server rejects it with a clear error. - A session cookie is required. The first request sets it; a persistent HTTP client handles this transparently.
Tools
| Tool | Purpose |
|---|---|
search_procurements |
Search publications by canton, CPV, process type, date, text |
search_procurements_detailed |
Search + full detail for the top n hits in one call (aggregated) |
search_awards |
Awarded contracts only (all four award types at once) |
get_procurement_details |
Full record for one publication |
get_publication_history |
Earlier publications of the same project (tender → award) |
search_cpv_codes |
Resolve keywords to CPV classification codes |
search_construction_codes |
Swiss construction codes (BKP, NPK, eBKP, OAG, CPC) |
find_procurement_office |
Public procurement offices by partial name |
source_status |
Reachability and latency of the simap.ch API |
All tools carry readOnlyHint, idempotentHint and openWorldHint (they query
the live simap.ch API).
Portfolio connections
- A vendor's UID links to
register-mcp. - BKP / eBKP construction codes on a tender connect procurement to school-building
planning and to
zh-education-mcp. - Complements
amtsblatt-mcpwith national coverage instead of three cantons.
Installation
uvx swiss-procurement-mcp
Claude Desktop
{
"mcpServers": {
"swiss-procurement": {
"command": "uvx",
"args": ["swiss-procurement-mcp"]
}
}
}
Cloud (Render / Railway)
MCP_TRANSPORT=sse HOST=0.0.0.0 PORT=8000 python -m swiss_procurement_mcp
Configuration
| Variable | Default | Purpose |
|---|---|---|
MCP_TRANSPORT |
stdio |
stdio | sse | streamable-http |
MCP_HOST / HOST |
127.0.0.1 |
HTTP binding (cloud transports only). Defaults to loopback; set 0.0.0.0 explicitly to expose all interfaces in a cloud deployment. |
PORT / MCP_PORT |
8000 |
HTTP port (cloud transports only) |
No API keys — the wrapped simap.ch read endpoints are fully public.
Testing
PYTHONPATH=src pytest tests/ -m "not live" # offline, respx-mocked
PYTHONPATH=src pytest tests/ -m live # hits the real API
See EXAMPLES.md for use cases grouped by audience (schools, public, administration, developers) and a tool-selection reference table.
Known limitations
- Read-only by design. Publishing and submission endpoints exist in the simap API but are deliberately not wrapped.
- Award coverage is uneven across cantons; some publish awards diligently, others rarely. Absence of an award is not proof none happened.
- No contract values in search results. Amounts, where published, live in the detail record's statistics section, which varies by procedure.
- Unofficial client. Publications remain authoritative on simap.ch itself.
Project structure
swiss-procurement-mcp/
├── src/swiss_procurement_mcp/
│ ├── server.py # FastMCP tools (9, read-only)
│ ├── client.py # simap.ch HTTP client + retry + normalisation
│ ├── constants.py # probe-derived lookup tables (cantons, pub types, codes)
│ ├── models.py # Pydantic v2 envelopes (source + provenance)
│ └── __main__.py # Dual-transport entry point (stdio / SSE / streamable-http)
├── tests/ # respx-mocked + @pytest.mark.live
└── .github/workflows/ # CI + OIDC PyPI/MCP-registry publish
Maturity & updates
Phase 1 — read-only. This server wraps only the public read endpoints; the write / OIDC-protected simap endpoints are deliberately out of scope. See the SECURITY.md re-evaluation triggers for the conditions that would move it to a write phase.
The server targets the MCP protocol version negotiated by the pinned mcp SDK.
SDK and dependency updates arrive as Dependabot PRs, so
a breaking protocol or SDK change is reviewed deliberately rather than drifting
in silently.
Contributing
Contributions are welcome — see CONTRIBUTING.md for how to report bugs, suggest a new endpoint, or submit code.
Security
This is a read-only, no-PII, public-open-data server. Audited against the
portfolio MCP best-practice catalogue (15 pass / 16 partial / 1 fail across
32 applicable checks, production-ready). See SECURITY.md for the
posture and how to report a vulnerability, and audits/ for the full
report.
Changelog
See CHANGELOG.md.
Credits
- Data: simap.ch read API v1.5.1, operated by the simap.ch association. API docs: simap.ch/api-doc, guides: kissimap.ch.
- The underlying tenders are official public-procurement announcements by Swiss public bodies. simap.ch publishes no explicit open-data licence; reuse is subject to the simap.ch terms. Attribute the source as simap.ch (Verein simap.ch).
- Built following the
mcp-data-source-probemethodology.
The code in this repository is MIT licensed; the data is simap.ch's, under its terms (see above). Public money, public code.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swiss_procurement_mcp-0.3.0.tar.gz.
File metadata
- Download URL: swiss_procurement_mcp-0.3.0.tar.gz
- Upload date:
- Size: 63.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a21f383d8dd1ffcacd0bcbfbe3dbaa1bd01c8fe8a9925b932fdbff9292653c7
|
|
| MD5 |
c5e1431c856e1649acdced9df29b6ca4
|
|
| BLAKE2b-256 |
ccb639fc55db8db7af9c56d8aa612b270543ddf799cd33f3db09409b1baecfa7
|
Provenance
The following attestation bundles were made for swiss_procurement_mcp-0.3.0.tar.gz:
Publisher:
publish.yml on malkreide/swiss-procurement-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
swiss_procurement_mcp-0.3.0.tar.gz -
Subject digest:
1a21f383d8dd1ffcacd0bcbfbe3dbaa1bd01c8fe8a9925b932fdbff9292653c7 - Sigstore transparency entry: 2257418435
- Sigstore integration time:
-
Permalink:
malkreide/swiss-procurement-mcp@3aa1cc620fcc49dc36c7a5f21b7b2f8616cd7b5c -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3aa1cc620fcc49dc36c7a5f21b7b2f8616cd7b5c -
Trigger Event:
push
-
Statement type:
File details
Details for the file swiss_procurement_mcp-0.3.0-py3-none-any.whl.
File metadata
- Download URL: swiss_procurement_mcp-0.3.0-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
177b7e3f89b1b60f81fcc35b3f1f59833c6ac86eb6d69d787cc6fa20158767af
|
|
| MD5 |
567db926e29a2b95add3c1ca929bc6b2
|
|
| BLAKE2b-256 |
02791a60a75ddb60df9109fc9fd89591b86393be279904d3e6ce72ba1033037e
|
Provenance
The following attestation bundles were made for swiss_procurement_mcp-0.3.0-py3-none-any.whl:
Publisher:
publish.yml on malkreide/swiss-procurement-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
swiss_procurement_mcp-0.3.0-py3-none-any.whl -
Subject digest:
177b7e3f89b1b60f81fcc35b3f1f59833c6ac86eb6d69d787cc6fa20158767af - Sigstore transparency entry: 2257418445
- Sigstore integration time:
-
Permalink:
malkreide/swiss-procurement-mcp@3aa1cc620fcc49dc36c7a5f21b7b2f8616cd7b5c -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3aa1cc620fcc49dc36c7a5f21b7b2f8616cd7b5c -
Trigger Event:
push
-
Statement type: