Connects Claude to Tenders Electronic Daily, the EU's official public procurement database. Exposes a single tool to fetch individual notices by publication number, which is useful when you're tracking specific contract opportunities or need to pull full tender details after spotting something interesting. The server runs through Pipeworx's gateway infrastructure, which also offers an ask_pipeworx tool that lets you query in natural language instead of calling tools directly. If you're monitoring EU government contracts, researching procurement trends, or building tooling around public tenders, this gives you programmatic access to the data without dealing with TED's web interface or scraping.
TED MCP — Tenders Electronic Daily (EU public procurement)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
get_notice | Fetch a single TED notice by publication number (e.g. "123456-2025"). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"ted-eu": {
"url": "https://gateway.pipeworx.io/ted-eu/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Ted Eu data" })
The gateway picks the right tool and fills the arguments automatically.
MIT