qune-tech/ocds-mcp
This server connects AI assistants to German public procurement (OCDS) data, enabling tender discovery, semantic search, and company profile-based matching with GDPR-compliant privacy.
Semantic tender search (
search_text): Natural language vector similarity search across all procurement tenders (German text works best); queries are embedded locally and matched remotely.List and filter tenders (
list_releases): Browse tenders filtered by month, CPV code, category, procurement method, value range, buyer name, NUTS region, deadline, EU funding status, award status, and more.Full tender details (
get_release): Retrieve complete OCDS release data for a specific tender by OCID, including buyer, parties, awards, and lot structure.Database statistics (
get_index_info): Check API connectivity and see counts of available releases, embeddings, and local company profiles.Company profile management: Create, update, view, list, and delete company profiles (name, description, CPV codes, categories, location) stored locally in SQLite; description changes auto-trigger re-embedding.
Tender matching (
match_tenders): Match a stored company profile against tenders using semantic KNN cosine similarity, with optional post-filtering by CPV, category, value, location, deadline, and more. Profile text stays local — only embedding vectors are sent to the API.
Works with Claude Desktop, Claude Code, Cursor, LM Studio, and other MCP-compatible AI assistants.
vergabe-mcp
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.
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.
Quick Start
1. Get an API key
Sign up at vergabe-dashboard.qune.de and create an API key. API keys require an active Enterprise plan (the local server is free and open source; the API gate rides key issuance).
2. Install
Via npx (easiest — downloads the correct binary automatically):
npx @qune-tech/vergabe-mcp --api-key sk_live_YOUR_KEY_HEREOr download a pre-built binary from GitHub Releases:
Platform | Download |
Linux x86_64 | |
macOS Apple Silicon | |
Windows x86_64 |
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-mcpWindows: 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-mcp3. Configure your AI client
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:
Command:
npxArgs:
-y @qune-tech/vergabe-mcp --api-key sk_live_YOUR_KEY_HERE
Using the binary directly:
Command:
vergabe-mcpArgs:
--api-key sk_live_YOUR_KEY_HERE
LM Studio — Settings → MCP → Add Server:
Click + Add Server and choose STDIO
Fill in:
Using npx:
Name:
vergabeCommand:
npxArguments:
-y @qune-tech/vergabe-mcp --api-key sk_live_YOUR_KEY_HERE
Using the binary directly:
Name:
vergabeCommand: full path to the binary, e.g.
/usr/local/bin/vergabe-mcpArguments:
--api-key sk_live_YOUR_KEY_HERE
Click Save
In the chat, select a model that supports tool use and enable the
vergabeserver
LM Studio requires models with tool-calling support (e.g. Qwen 2.5, Mistral, Llama 3.1+). Smaller models may not use all 11 tools reliably — 7B+ recommended.
Replace sk_live_YOUR_KEY_HERE with your actual API key. You can also pass the key via the VERGABE_API_KEY environment variable.
Related MCP server: mcp-context
Available Tools (11)
Tool | Description |
| Semantic search across all tenders (query embedded locally) |
| Filter and browse tenders by phase, CPV prefix, country, value range, deadline, buyer, procurement method |
| Raw eForms XML envelope for one OCID (optional |
| A procurement's notice lineage (PIN→CN→CAN) as |
| API health/version, embedder status, and embedding-contract check |
| Create a matching profile for your company (stored locally) |
| Update an existing profile |
| View profile details |
| List all your profiles |
| Delete a profile |
| Match a profile against all tenders by semantic similarity (vector embedded locally) |
CLI Options
Usage: vergabe-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: VERGABE_API_KEY]
-h, --help Print helpHow It Works
LLM ←stdio→ vergabe-mcp (local)
│ Local: company profiles (SQLite) + sentence embedder (ONNX)
│ HTTPS: vectors, OCIDs, filter values, API key
└──HTTPS──→ Vergabe Dashboard API (/api/v1)The MCP server runs locally on your machine:
Company profiles (name, description, CPV interests, location) are stored in a local SQLite database — they never leave your network.
Text embeddings are computed locally with a multilingual ONNX model (multilingual-e5-small, 384-dim). Search queries use the
query:prefix and go toPOST /api/v1/search/vector; profile descriptions use thepassage:prefix and go toPOST /api/v1/match/vector.Only embedding vectors (384 floats), the OCIDs you fetch, filter values, and your API key are sent to the API. Your query and profile text stay local.
Privacy & data flow
What stays on your machine: profile text, search-query text, CPV interests, location.
What the API sees: embedding vectors, the OCIDs you read, the filter values you use, and your API key. These reveal commercial interest (which sectors, buyers, value bands, tenders you look at) but not the underlying text. Embedding vectors are a derived, pseudonymous representation — minimisation, not elimination.
First-run model download: on first use the server downloads the embedding model from huggingface.co:
What:
model.onnx+tokenizer.json, ~118 MB total.When: the first time the embedder runs; cached afterwards at
~/.cache/vergabe/models/multilingual-e5-small.From:
huggingface.co(a US-operated third party). No user data is sent in this fetch — it is a plain model download.
For air-gapped / enterprise installs, place model.onnx and tokenizer.json in the cache directory above and the runtime download is skipped.
Requirements
An API key from vergabe-dashboard.qune.de on an Enterprise plan
~120 MB disk space for the ONNX model (downloaded automatically on first run)
Internet connection to reach the API
License
MIT — see LICENSE.
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/qune-tech/vergabe-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server