simap_project
Pack: simap · Endpoint: https://gateway.pipeworx.io/simap/mcp
Fetch the full detail of one Swiss public procurement publication from simap.ch by project_id + publication_id (both UUIDs returned by simap_search / simap_recent). Returns the shaped notice: title, description, CPV classification, procedure and order type, procurement office with full address/email/phone, and for award publications the winning vendor(s) with CHF price, number of submitted offers, and award justification.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project_id | string | yes | Project UUID, e.g. “feca42bc-5ef4-492f-88c6-e6622940026c”. |
publication_id | string | yes | Publication UUID, e.g. “3d50c790-644c-4aa1-9fd2-ac7207bdcdcd”. |
lang | string | no | Language: “de” (default), “fr”, “it”, or “en”. |
Example call
Arguments
{
"project_id": "feca42bc-5ef4-492f-88c6-e6622940026c",
"publication_id": "3d50c790-644c-4aa1-9fd2-ac7207bdcdcd"
}
curl
curl -X POST https://gateway.pipeworx.io/simap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"simap_project","arguments":{"project_id":"feca42bc-5ef4-492f-88c6-e6622940026c","publication_id":"3d50c790-644c-4aa1-9fd2-ac7207bdcdcd"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('simap_project', {
"project_id": "feca42bc-5ef4-492f-88c6-e6622940026c",
"publication_id": "3d50c790-644c-4aa1-9fd2-ac7207bdcdcd"
});
More examples
{
"project_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"publication_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"lang": "fr"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"simap": {
"url": "https://gateway.pipeworx.io/simap/mcp"
}
}
}
See Getting Started for client-specific install steps.