Search and match German public procurement tenders (OCDS) from your local LLM.
MCPpedia last refreshed this data
Ocds MCP Server is an MCP server that search and match German public procurement tenders (OCDS) from your local LLM. Its tool list has not been published yet over stdio, requires no API key, and scores 85/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ocds": {
"args": [
"-y",
"@qune-tech/ocds-mcp",
"--api-key",
"sk_live_YOUR_KEY_HERE"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@qune-tech/ocds-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @qune-tech/ocds-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in legal / search
An autonomous agent that conducts deep research on any data using any LLM providers
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
The official MCP server implementation for the Perplexity API Platform
Production ready MCP server with real-time search, extract, map & crawl.
MCP Security Weekly
Get CVE alerts and security updates for Ocds MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Local MCP server for German public procurement search. Connects your AI assistant (Claude, GPT, etc.) to the Vergabe Dashboard API for semantic search, tender matching, and company-profile management.
Your queries and company profiles never leave your machine. They are embedded locally with a multilingual ONNX model; only the resulting embedding vectors, OCIDs, and filter values are sent to the API. Data minimisation by design.
Hosted alternative: if you just want search from your AI assistant, there is a hosted MCP connector (OAuth sign-in, no installation) — see the setup guide. This local server is for running the client in your own environment: queries and profiles are embedded locally, only vectors and filter values leave the machine, and it unlocks API-key features.
New to German public procurement? The Vergabe Dashboard knowledge base explains eForms, EU thresholds, and the tender lifecycle, and KI für Vergabe covers the hosted AI side of this server.
Sign up at vergabe-dashboard.qune.de and create an API key. API keys require an active Pro plan (€99/month; the local server itself is free and open source — the API gate rides key issuance).
Via npx (easiest — downloads the correct binary automatically):
npx @qune-tech/vergabe-mcp --api-key sk_live_YOUR_KEY_HERE
Or download a pre-built binary from GitHub Releases:
| Platform | Download |
|---|---|
| Linux x86_64 | vergabe-mcp-linux-x86_64.tar.gz |
| macOS Apple Silicon | vergabe-mcp-macos-arm64.tar.gz |
| Windows x86_64 | vergabe-mcp-windows-x86_64.zip |
Linux / macOS:
# Example for Linux x86_64 — adjust the filename for your platform
tar xzf vergabe-mcp-linux-x86_64.tar.gz
sudo mv vergabe-mcp /usr/local/bin/vergabe-mcp
Windows: Extract the zip and move vergabe-mcp.exe somewhere on your PATH.
Or build from source:
git clone https://github.com/qune-tech/vergabe-mcp.git
cd vergabe-mcp
cargo build --release
# Binary at target/release/vergabe-mcp
Claude Desktop — edit claude_desktop_config.json:
Using npx:
{
"mcpServers": {
"vergabe": {
"command": "npx",
"args": ["-y", "@qune-tech/vergabe-mcp", "--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Using the binary directly:
{
"mcpServers": {
"vergabe": {
"command": "vergabe-mcp",
"args": ["--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Claude Code — add .mcp.json to your project root:
Using npx:
{
"mcpServers": {
"vergabe": {
"command": "npx",
"args": ["-y", "@qune-tech/vergabe-mcp", "--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Using the binary directly:
{
"mcpServers": {
"vergabe": {
"command": "vergabe-mcp",
"args": ["--api-key", "sk_live_YOUR_KEY_HERE"]
}
}
}
Cursor — Settings → MCP Servers → Add:
Using npx:
npx-y @qune-tech/vergabe-mcp --api-key sk_live_YOUR_KEY_HEREUsing the binary directly:
vergabe-mcp--api-key sk_live_YOUR_KEY_HERELM Studio — Settings → MCP → Add Server:
Using npx:
vergabenpx