@pipeworx/eu-funding-tenders
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@pipeworx/eu-funding-tendersWhat are the open calls for Horizon Europe?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/eu-funding-tenders
EU Funding & Tenders Portal MCP — Horizon Europe and every other EU funding call plus EU tenders: what is open, when it closes, and the topic identifier to quote in an application.
Tools
eu_search_calls(query?, status?, programme?, limit?, page?)— free-text search over EU grant topics (type=1).statustakes plain words (opendefault,forthcoming,closed,any);programmetakes a code such ashorizon,life,erasmus,digital,cef,eu4h. Returns identifier, title, parent call, deadline, days remaining, status word, types of action, programme and portal URL.eu_open_calls(query?, programme?, limit?)— currently-open calls ordered by nearest deadline, days-until-deadline computed at request time.eu_get_topic(identifier, include_conditions?)— full detail for one topic (e.g.HORIZON-CL5-2026-09-D4-03): tag-stripped description, admissibility/eligibility conditions, indicative budget with expected number of grants and EU contribution per project, action types, deadline model, destination, cross-cutting priorities and submission links. Also resolves external-action references likeEuropeAid/187022/DD/ACT/IN.eu_search_tenders(query?, status?, limit?, page?)— the same search againsttype=2, the Commission's external-action tenders and EuropeAid calls. Returns reference, country, contract budget + currency, deadline, status and portal URL.
Tools that legitimately cannot answer return { found: false, reason, hint } — unknown topic identifier, unknown programme code, no matching calls — rather than throwing.
Related MCP server: Taiwan Tender MCP
Auth
Keyless. The portal's own public key (apiKey=SEDIA) is baked in; callers pass nothing.
Data sources
Search endpoint:
https://api.tech.ec.europa.eu/search-api/prod/rest/search?apiKey=SEDIAHuman portal: https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/home
Topic pages:
https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/opportunities/topic-details/<identifier>External-action calls (Prospect):
https://webgate.ec.europa.eu/prospect/external/publishedcalls.htm?callId=<id>
Gotchas. The request body is multipart/form-data and every part must carry Content-Type: application/json — send the parts as plain strings and the API answers HTTP 500 {"type":"throwable","message":"An internal error occurred"} with no clue what it wanted. In curl that is -F 'query={...};type=application/json'; in a Worker the only way to attach a per-part content type is to append a Blob with { type: 'application/json' }, and you must let fetch set the multipart boundary rather than setting Content-Type yourself. The text query param cannot be empty, so *** is the match-all term. Every value in a result's metadata is a single-element array (metadata.title === ["…"]), so each field needs unwrapping or every consumer gets arrays. descriptionByte and topicConditions are raw HTML with inline styles — this pack strips tags and collapses whitespace, including two upstream defects it leaves behind: literal <p>null</p> paragraphs, and a broken attribute quote (<div class="x>") that otherwise leaves a stray "> at the head of the conditions text. budgetOverview is a JSON string whose budgetTopicActionMap is keyed by internal ids; the matching entry is found by the action string, which starts with the topic identifier. The query DSL is a narrow subset of Elasticsearch: terms works, prefix is rejected with HTTP 400, and range is silently ignored (same totalResults, same rows) — so date windows cannot be pushed down. That matters because the portal leaves several hundred legacy topics flagged Open with deadlines years in the past (~250 of ~590 as of July 2026), which is why eu_open_calls sorts by deadlineDate ASC and binary-searches the result set for the first live deadline, and why eu_search_calls sorts DESC and drops past-deadline rows from the page it returns. frameworkProgramme is an internal numeric id, so the pack ships a code→id map (external-action records all use the placeholder 111111). Facet values worth knowing: type 1 = grant topics, 2 = tenders/external action, and status 31094501 = Forthcoming, 31094502 = Open, 31094503 = Closed (tender records add 310945031 and 99999998, both closed). type=2 also indexes portal FAQs, so tender queries pin DATASOURCE=SEDIA. Finally, text matching is loose — a nonsense phrase still returns hundreds of hits — so treat total_results as a relevance-ranked upper bound, not a count of true matches.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"eu-funding-tenders": {
"url": "https://gateway.pipeworx.io/eu-funding-tenders/mcp"
}
}
}Or connect to the full Pipeworx gateway for access to all 1375+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Eu Funding Tenders data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides access to FluentLab's funding database, enabling users to search for funding opportunities and retrieve document checklists required for specific funding programme applications.Last updated131MIT
- FlicenseAquality-maintenanceEnables users to search and retrieve detailed information about Taiwan government procurement tenders through the Government Electronic Procurement System API. It supports searching tenders by keyword, category code, date, and government unit.Last updated6
- AlicenseAqualityAmaintenanceEnables searching and retrieving EU legal documents (regulations, directives, court decisions) via the EUR-Lex Cellar API, supporting full-text search, metadata, citations, and consolidated versions without requiring an API key.Last updated112096MIT
- Alicense-qualityDmaintenanceEnables search and analysis of European public procurement tenders, including EU above-threshold (TED) and below-threshold from 11 national sources, with hybrid search and filtering.Last updatedMIT
Related MCP Connectors
Live EU funding data in your AI: grant calls, programmes, consortium partners, VCs, incubators.
Search US grants + federal contracts (Grants.gov + SAM.gov) from any LLM.
Government tender search for AI agents. UK, EU and US procurement opportunities.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/pipeworx-io/mcp-eu-funding-tenders'
If you have feedback or need assistance with the MCP directory API, please join our Discord server