npm @digilac/simap-mcpstdioMITupdated 13d ago
An MCP (Model Context Protocol) server for interacting with simap.ch, Switzerland's public procurement platform.
¿Qué puedes hacer con simap mcp?
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
- Node.js ≥ 22 (LTS or newer).
- An MCP-compatible client (Claude Code, Claude Desktop, Cursor, VS Code, Windsurf, Cline, Zed, …).
- No simap account or API key required — the simap API is public and read-only.
Installation & Configuration
The recommended way is npx — no global install needed. Pick your client below and copy the snippet.
Claude Desktop
Edit the Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
Restart Claude Desktop for the change to take effect.
Other clients
Add to ~/.claude/settings.json:
{
"mcpServers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
Global config at ~/.cursor/mcp.json (all projects) or project-level .cursor/mcp.json:
{
"mcpServers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
Fully quit and reopen Cursor — MCP servers are only loaded at startup.
Workspace config at .vscode/mcp.json (or open the user-level file via the MCP: Open User Configuration command):
{
"servers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
VS Code uses
serversas the top-level key (notmcpServers).
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
Open Cline's MCP Servers panel → Configure tab, then paste:
{
"mcpServers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"],
"disabled": false
}
}
}
Edit the user settings.json (~/.config/zed/settings.json on macOS/Linux, %APPDATA%\Zed\settings.json on Windows) or a project-level .zed/settings.json:
{
"context_servers": {
"simap": {
"command": "npx",
"args": ["-y", "@digilac/simap-mcp"]
}
}
}
Zed uses
context_serversas the top-level key.
npm install -g @digilac/simap-mcp
Then configure your client with the direct command:
{
"mcpServers": {
"simap": {
"command": "simap-mcp"
}
}
}
git clone https://github.com/Digilac/simap-mcp.git
cd simap-mcp
npm install
npm run build
Then configure your client with 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
Instalación
Añade simap mcp a tu cliente. Elige el que uses.
claude mcp add simap-mcp -- npx -y @digilac/simap-mcpcodex mcp add simap-mcp -- npx -y @digilac/simap-mcpamp mcp add simap-mcp -- npx -y @digilac/simap-mcp{
"mcpServers": {
"simap-mcp": {
"command": "npx",
"args": [
"-y",
"@digilac/simap-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"simap-mcp": {
"command": "npx",
"args": [
"-y",
"@digilac/simap-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"simap-mcp","command":"npx","args":["-y","@digilac/simap-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"simap-mcp": {
"command": "npx",
"args": [
"-y",
"@digilac/simap-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"simap-mcp": {
"command": "npx",
"args": [
"-y",
"@digilac/simap-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"simap-mcp": {
"command": "npx",
"args": [
"-y",
"@digilac/simap-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"simap-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@digilac/simap-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"simap-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@digilac/simap-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @digilac/simap-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Puntuación
39 / 100
Incompleta
- Documentación25/25
- Mantenimiento25/25
- Confianza16/20
- Capacidad0/15
- Instalación12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 6 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Historial de versiones
| Versiones | Publicada |
|---|---|
| 1.3.1Última | 10 ago 2026 |
| 1.3.0 | 7 may 2026 |
| 1.2.4 | 6 may 2026 |
| 1.2.3 | 30 abr 2026 |
| 1.2.2 | 29 abr 2026 |
| 1.2.1 | 23 abr 2026 |
| 1.2.0 | 22 abr 2026 |
| 1.1.0 | 17 abr 2026 |
| 1.0.10 | 16 abr 2026 |
| 1.0.9 | 1 abr 2026 |
| 1.0.8 | 27 mar 2026 |
| 1.0.7 | 27 mar 2026 |
| 1.0.6 | 6 mar 2026 |
| 1.0.5 | 5 mar 2026 |
| 1.0.4 | 26 feb 2026 |