Sign In

@qune-tech/ocds-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qune-tech/ocds-mcp

MCP server for German public procurement data (OCDS). Semantic search, tender matching, and company profile management.

latest
Source
npmnpm
Version
0.4.0
Version published
Weekly downloads
36
5.88%
Maintainers
1
Weekly downloads
 
Created
Source

@qune-tech/ocds-mcp

MCP server for German public procurement data (OCDS). Connects your AI assistant to the Vergabe Dashboard API for semantic search, tender matching, and company profile management.

Company profiles never leave your machine. GDPR-compliant by design.

Quick Start

npx @qune-tech/ocds-mcp --api-key sk_live_YOUR_KEY_HERE

Get an API key

Sign up at vergabe-dashboard.qune.de and create an API key (MCP or Enterprise plan required).

Configure your AI client

Claude Desktop

Edit claude_desktop_config.json:

{
  "mcpServers": {
    "ocds": {
      "command": "npx",
      "args": ["-y", "@qune-tech/ocds-mcp", "--api-key", "sk_live_YOUR_KEY_HERE"]
    }
  }
}

Claude Code

Add .mcp.json to your project root:

{
  "mcpServers": {
    "ocds": {
      "command": "npx",
      "args": ["-y", "@qune-tech/ocds-mcp", "--api-key", "sk_live_YOUR_KEY_HERE"]
    }
  }
}

Cursor

Settings > MCP Servers > Add:

  • Command: npx
  • Args: -y @qune-tech/ocds-mcp --api-key sk_live_YOUR_KEY_HERE

Available Tools

ToolDescription
search_textSemantic search across all tenders
list_releasesFilter and browse tenders by month, CPV code, category, value range
get_releaseFull tender details by OCID
get_index_infoDatabase statistics and connectivity check
create_company_profileCreate a matching profile for your company
update_company_profileUpdate an existing profile
get_company_profileView profile details
list_company_profilesList all your profiles
delete_company_profileDelete a profile
match_tendersMatch a profile against all tenders with semantic similarity

How It Works

The npm package downloads the correct platform-native binary on install. No Node.js runtime dependency for the actual MCP server.

LLM <--stdio--> ocds-mcp (local binary)
                   |  Local: company profiles + sentence embedder
                   |  Remote: searches, release queries
                   +--HTTPS--> Vergabe Dashboard API
  • Company profiles are stored locally (never leave your machine).
  • Text embeddings are computed locally (multilingual-e5-small ONNX model, ~118 MB, auto-downloaded on first run).
  • Only embedding vectors are sent to the API for search and matching.

Supported Platforms

PlatformArchitecture
Linuxx86_64
macOSApple Silicon (ARM64)
Windowsx86_64

Requirements

  • An API key from vergabe-dashboard.qune.de
  • ~200 MB disk space for the ONNX model (auto-downloaded on first run)
  • Internet connection to reach the API

License

MIT

Keywords

mcp

FAQs

Package last updated on 24 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts