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
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval — skill-guided workflows, no API keys.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
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.
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 | Updat |