loading…
Search for a command to run...
loading…
German public procurement data (OCDS) — semantic search, tender matching with company profiles, and structured filtering.
German public procurement data (OCDS) — semantic search, tender matching with company profiles, and structured filtering.
MCP server for German public procurement data (OCDS). Connects your AI assistant (Claude, GPT, etc.) to the Vergabe Dashboard API for semantic search, tender matching, and company profile management.
Your company profiles never leave your machine — only embedding vectors are sent to the API. GDPR-compliant by design.
Sign up at vergabe-dashboard.qune.de and create an API key (MCP or Enterprise plan required).
Via npx (easiest — downloads the correct binary automatically):
npx @qune-tech/ocds-mcp --api-key sk_live_YOUR_KEY_HERE
Or download pre-built binary from GitHub Releases:
| Platform | Download |
|---|---|
| Linux x86_64 | ocds-mcp-linux-x86_64.tar.gz |
| macOS Apple Silicon | ocds-mcp-macos-arm64.tar.gz |
| Windows x86_64 | ocds-mcp-windows-x86_64.zip |
Linux / macOS:
# Example for Linux x86_64 — adjust the filename for your platform
tar xzf ocds-mcp-linux-x86_64.tar.gz
sudo mv ocds-mcp-linux-x86_64 /usr/local/bin/ocds-mcp
Windows: Extract the zip and move ocds-mcp-windows-x86_64.exe somewhere on your PATH (e.g. C:\Users\YOU\.local\bin\ocds-mcp.exe).
Or build from source:
git clone https://github.com/qune-tech/ocds-mcp.git
cd ocds-mcp
cargo build --release
# Binary at target/release/ocds-mcp
Claude Desktop — edit claude_desktop_config.json:
Using npx:
{
"mcpServers": {
"ocds": {
"command": "npx",
"args": ["-y", "@qune-tech/ocds-mcp", "--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Using the binary directly:
{
"mcpServers": {
"ocds": {
"command": "ocds-mcp",
"args": ["--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Claude Code — add .mcp.json to your project root:
Using npx:
{
"mcpServers": {
"ocds": {
"command": "npx",
"args": ["-y", "@qune-tech/ocds-mcp", "--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Using the binary directly:
{
"mcpServers": {
"ocds": {
"command": "ocds-mcp",
"args": ["--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Cursor — Settings → MCP Servers → Add:
Using npx:
npx-y @qune-tech/ocds-mcp --api-key sk_live_YOUR_KEY_HEREUsing the binary directly:
ocds-mcp--api-key sk_live_YOUR_KEY_HERELM Studio — Settings → MCP → Add Server:
Using npx:
ocdsnpx-y @qune-tech/ocds-mcp --api-key sk_live_YOUR_KEY_HEREUsing the binary directly:
ocds/usr/local/bin/ocds-mcp--api-key sk_live_YOUR_KEY_HEREocds serverLM Studio requires models with tool-calling support (e.g. Qwen 2.5, Mistral, Llama 3.1+). Smaller models may not use all 10 tools reliably — 7B+ recommended.
Replace sk_live_YOUR_KEY_HERE with your actual API key.
| Tool | Description |
|---|---|
search_text |
Semantic search across all tenders |
list_releases |
Filter and browse tenders by month, CPV code, category, value range |
get_release |
Full tender details by OCID |
get_index_info |
Database statistics and connectivity check |
create_company_profile |
Create a matching profile for your company |
update_company_profile |
Update an existing profile |
get_company_profile |
View profile details |
list_company_profiles |
List all your profiles |
delete_company_profile |
Delete a profile |
match_tenders |
Match a profile against all tenders with semantic similarity |
Usage: ocds-mcp [OPTIONS]
Options:
--db <DB> Local profiles database [default: profiles.db]
--data-dir <DIR> Data directory [default: data]
--api-url <URL> Vergabe Dashboard API [default: https://vergabe-dashboard.qune.de]
--api-key <KEY> API key [env: OCDS_API_KEY]
-h, --help Print help
LLM ←stdio→ ocds-mcp (local)
│ Local: company profiles + sentence embedder
│ Remote: searches, release queries
└──HTTPS──→ Vergabe Dashboard API
The MCP server runs locally on your machine:
MIT — see LICENSE.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"qune-tech-ocds-mcp": {
"command": "npx",
"args": []
}
}
}