什么是 io.github.Digilac/simap-mcp?
面向 SIMAP.ch 瑞士公共采购平台的 MCP server,用于查询、获取和处理招采相关信息。
README
simap MCP Server
An MCP (Model Context Protocol) server for interacting with simap.ch, Switzerland's public procurement platform.
Enables Claude and other AI assistants to search and view public tenders in Switzerland.
Developed by Digilac.
Features
| Tool | Description |
|---|---|
search_tenders | Search tenders with filters (text, dates, types, cantons, CPV) |
get_tender_details | Get full details of a specific tender |
search_cpv_codes | Search CPV codes (Common Procurement Vocabulary) |
browse_cpv_tree | Navigate CPV code hierarchy |
list_cantons | List all Swiss cantons |
list_institutions | List Swiss public institutions |
get_publication_history | Get publication history for a project |
search_proc_offices | Search public procurement offices |
search_bkp_codes | Search BKP codes (construction) |
browse_bkp_tree | Navigate BKP code hierarchy |
search_npk_codes | Search NPK codes (standardized positions) |
browse_npk_tree | Navigate NPK code hierarchy |
search_oag_codes | Search OAG codes (object types) |
browse_oag_tree | Navigate OAG code hierarchy |
Prerequisites
- An MCP-compatible client — Claude Desktop is the easiest if you are not a developer.
- Node.js ≥ 22 — only for clients that do not bundle it. Claude Desktop ships with its own Node.js, so there is nothing to install. For every other client, get it from nodejs.org (pick the LTS version).
- No simap account, no API key, no payment — the simap API is public and read-only.
Installation & Configuration
Claude Desktop (recommended)
-
In Claude Desktop, open Settings → Developer → Edit Config. This opens the folder holding
claude_desktop_config.json:- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
Open that file in a text editor and paste the block below. If the file already contains an
mcpServerssection, add only the"simap"entry inside it.json{ "mcpServers": { "simap": { "command": "npx", "args": ["-y", "@digilac/simap-mcp"] } } } -
Save the file, then fully quit Claude Desktop (macOS: ⌘Q — closing the window is not enough) and reopen it.
-
Check it worked: the simap tools now show up under the tools icon in the message box. Ask "List the Swiss cantons in simap" — Claude should answer with the 26 cantons.
The very first launch downloads the server, which takes a few seconds. If the tools do not appear, check Settings → Developer for the server status and logs.
LM Studio
LM Studio follows the same mcp.json notation. Open the Program tab in the right-hand sidebar, then Install → Edit mcp.json, and add:
{
"mcpServers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
LM Studio does not bundle Node.js — install it from nodejs.org first. Tender search leans on the model's ability to chain tool calls, so results depend a lot on which local model you load.
Code editors & developer tools
<details> <summary><b>Claude Code, Cursor, VS Code, Windsurf</b></summary>They all take the same snippet — only the file and the top-level key change:
| Client | Where | Top-level key |
|---|---|---|
| Claude Code | claude mcp add simap -- npx -y @digilac/simap-mcp | mcpServers |
| Cursor | ~/.cursor/mcp.json (all projects) or .cursor/mcp.json (one project) | mcpServers |
| VS Code (Copilot) | .vscode/mcp.json, or the MCP: Open User Configuration command | servers |
| Windsurf | ~/.codeium/windsurf/mcp_config.json | mcpServers |
{
"mcpServers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
- Claude Code — add
--scope userto enable it in every project, or--scope projectto write a.mcp.jsonshared with your team. Claude Code does not readmcpServersfromsettings.json. Verify withclaude mcp list. - VS Code uses
serversas the top-level key, notmcpServers. - Cursor loads MCP servers only at startup — quit and reopen it fully.
npm install -g @digilac/simap-mcp
Then point your client at the command directly:
{
"mcpServers": {
"simap": {
"command": "simap-mcp"
}
}
}
git clone https://github.com/Digilac/simap-mcp.git
cd simap-mcp
npm install
npm run build
Then point your client at the absolute path:
{
"mcpServers": {
"simap": {
"command": "node",
"args": ["/absolute/path/to/simap-mcp/dist/index.js"]
}
}
}
Usage
Once configured, just ask your AI assistant in natural language. Mention "in simap" to make sure the assistant routes the request through the MCP server:
- "Show me new tenders published today in simap"
- "Find construction tenders in canton Vaud in simap"
- "Give me the details of this tender in simap" (after a search)
- "Search CPV codes for IT services in simap"
Listed on
Contributing
Contributions are welcome! See CONTRIBUTING.md for development setup and commands, and ARCHITECTURE.md for architecture, internal patterns, and the full tool parameter reference.
simap API
This server uses the public API from simap.ch.
License
常见问题
io.github.Digilac/simap-mcp 是什么?
面向 SIMAP.ch 瑞士公共采购平台的 MCP server,用于查询、获取和处理招采相关信息。
相关 Skills
MCP构建
by anthropics
聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。
✎ 想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。
Slack动图
by anthropics
面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。
✎ 帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。
接口测试套件
by alirezarezvani
扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。
✎ 帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。
相关 MCP Server
Slack 消息
编辑精选by Anthropic
Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。
✎ 这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。
by netdata
io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。
✎ 这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。
by d4vinci
Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。
✎ 这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。