cordis-mcp
Click 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., "@cordis-mcpFind Horizon Europe projects on quantum computing"
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.
cordis-mcp
MCP server for CORDIS — EU-funded research projects, including European Research Council (ERC) grants.
npx -y github:MCP-Hive/cordis-mcpNo API key, no registration, no cost. Data is CC BY 4.0.
What it covers
The EURIO knowledge graph, which holds CORDIS data for Horizon Europe, H2020 and FP7:
Projects | 80,208 |
Grants | 80,222 |
Project publications | 419,740 |
Project deliverables | 211,188 |
Organisation roles | 398,584 |
Related MCP server: europepmc-mcp-server
Tools
search_projects
Search EU-funded projects by keyword with server-side filters.
Parameter | Type | Purpose |
| string | Keywords matched against project titles |
| boolean | Also match abstracts — broader recall, slower. Default false |
| boolean | Restrict to ERC grants (ERC-STG, ERC-COG, ERC-ADG, ERC-POC, …) |
| string | Scheme code prefix, e.g. |
| string | ISO-2 country code of the coordinating organisation |
| number | Minimum EC contribution in EUR |
| string | Start-date window, |
| number | 1–50, default 10 |
Filters are applied in SPARQL, not after the fact, so a narrow request does not have its recall capped by whatever an unfiltered first page happened to contain.
get_project
Full record for one project by grant agreement number: abstract, funding, dates, scheme, DOI, and participating organisations (coordinator first).
list_erc_schemes
The ERC scheme codes present in CORDIS with grant counts, to feed
funding_scheme.
Notes on the data
totalCost is often zero. For many schemes — MSCA fellowships especially —
CORDIS records hasTotalCost as 0 while the real figure lives on the grant as
hasFundingAmount. This server reports that as ecContribution and suppresses
the misleading zero rather than passing it through. min_funding filters on the
EC contribution for the same reason.
Errors are never silently empty. A failed or rejected query returns a tool
error, not []. A caller billed per request must be able to tell "no matches"
from "upstream broke".
Attribution
CORDIS data is CC BY 4.0 and permits commercial reuse with attribution. Every
response carries an attribution field:
Data: CORDIS, © European Commission, CC BY 4.0
Keep it attached to anything derived from these results.
Implementation notes
The server queries the CORDIS SPARQL endpoint:
POST https://cordis.europa.eu/datalab/sparql/queryTwo things about that endpoint are worth knowing before changing queries:
It is undocumented. CORDIS's published services page describes SPARQL access without naming a query URL; this path was found by probing. It works and returns proper
application/sparql-results+json, but nothing commits CORDIS to keeping it. If it moves, the JSON search API athttps://cordis.europa.eu/search?format=jsonis the documented fallback (note: itsnumparameter caps at 50, andnum=100silently returns 10).The default graph does not union the named graphs. Every pattern must be wrapped in an explicit
GRAPH <...>block. Forgetting this does not error — it silently matches nothing.
Similarly, a FILTER only sees variables bound in its own group. Filters on
?ecContribution, which comes from the grants graph, must sit in the outer
group, not inside the projects block.
Development
npm install # dev dependencies only
npm run typecheck
npm run bundle # rebuild server/bundle.mjs
npm run smoketest # live end-to-end check against CORDISVerify the published one-liner:
npm run smoketest -- github:MCP-Hive/cordis-mcpserver/bundle.mjs is committed — it is the artifact npx executes, and the
package declares no runtime dependencies and no prepare script so that
npx -y github:... clones and runs with nothing to install or compile. Commit
the rebuilt bundle with any source change.
Roadmap
Scoped but not yet built: search_organisations (institution portfolios) and
get_project_outputs (the 420k-node publications and deliverables graph).
License
MIT — see LICENSE. The CORDIS data itself is CC BY 4.0, © European Commission.
Available Tools
3 toolsget_projectA
Fetch the full record for one EU-funded project by its grant agreement number, including abstract, funding, dates, funding scheme, and participating organisations.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Grant agreement number / CORDIS project id, e.g. '101019932'. | |
| include_participants | No | Include the list of participating organisations. Default true. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral transparency burden. It clearly indicates a read-only operation ('Fetch') and sets expectations about the record contents. It does not discuss errors, auth, or pagination, but for a simple single-record retrieval these are not significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, focused sentence that states the action, target, identifier scheme, and expected contents with no redundant wording. All important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-project fetch with fully documented parameters, the description is largely complete. It lists the main output areas and makes the input identifier clear. It could be slightly more explicit about when not to use it versus search_projects, but that is minor given the sibling names.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully documents both parameters with descriptions and a default, so the baseline is 3. The description adds little beyond what the schema provides, though mentioning 'participating organisations' aligns with the include_participants parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Fetch') and clearly identifies the resource: one EU-funded project identified by grant agreement number. It also enumerates key content areas, making it distinct from search_projects, which implies finding projects, and list_erc_schemes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description says the tool fetches by grant agreement number, making it clear this is for retrieving a known project rather than searching. It does not explicitly name sibling alternatives or exclusion conditions, but the usage context is clear enough for an agent. A fully explicit routing statement would earn a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_erc_schemesA
List the European Research Council funding schemes present in CORDIS with their grant counts, for use as the funding_scheme filter in search_projects.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the verb 'List' plus 'present in CORDIS with their grant counts' conveys a read-only enumeration and the shape of the returned data. It could add explicit no-side-effect/no-pagination statements, but for a zero-param controlled-list tool this is sufficient behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One tight sentence front-loads the action and resource, then adds the purpose clause. Every part earns its place; no fluff or repetition of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a no-parameter, no-output-schema list tool, the description fully covers what the agent needs: what is returned (ERC schemes and grant counts) and why to call it (to populate the funding_scheme filter). No critical gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters and 100% coverage, so the parameter baseline is 4. There are no parameter details to add; the description instead explains how the output will be consumed, which is useful context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List'), defines the exact resource (ERC funding schemes present in CORDIS), and includes the output content (grant counts). It clearly distinguishes itself from sibling search_projects and get_project by framing the result as the filter vocabulary for search_projects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent when to use the tool: to obtain valid values for the funding_scheme filter in search_projects. It does not explicitly spell out when-not-to-use or list alternatives, but the intended workflow is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_projectsA
Search EU-funded research projects (Horizon Europe, H2020, FP7) by keyword, with optional filters for ERC grants, funding scheme, coordinating country, minimum funding, and start date. Returns {total, items, attribution}.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results, 1-50. Default 10. | |
| query | No | Keywords matched against project titles. | |
| country | No | ISO 2-letter country code of the coordinating organisation, e.g. 'DE', 'FR', 'NL'. | |
| erc_only | No | Restrict to European Research Council grants (ERC-STG, ERC-COG, ERC-ADG, ERC-POC and related schemes). | |
| min_funding | No | Minimum total project cost in EUR. | |
| start_date_to | No | Latest project start date, as YYYY-MM-DD. | |
| funding_scheme | No | Restrict to a funding scheme code prefix, e.g. 'ERC-ADG' for Advanced Grants or 'MSCA' for Marie Skłodowska-Curie. Overrides erc_only. | |
| start_date_from | No | Earliest project start date, as YYYY-MM-DD. | |
| search_abstracts | No | Also match against project abstracts. Much broader recall but noticeably slower. Default false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It usefully discloses the return structure {total, items, attribution}, but does not describe search semantics beyond keyword matching, default behavior, pagination, or slowness of abstract search. The description adds some value but leaves important runtime behavior to the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, information-dense sentence that front-loads the action and resource, lists filters economically, and closes with the return shape. There is no fluff or repetition of schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 9 parameters and no output schema, the description gives the essential orientation: scope, filters, and the top-level response fields. It could be more complete by mentioning the optionality of query or directing an agent to get_project for single-project lookups, but the core calling context is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters in detail. The description groups filters (ERC, funding scheme, country, minimum funding, start date) in a readable way but adds no new syntactic or semantic detail beyond the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Search'), a specific resource ('EU-funded research projects'), and the programme scope (Horizon Europe, H2020, FP7). It also names the key filters and the return shape, distinguishing it from the siblings get_project and list_erc_schemes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use the tool: when you want to search across multiple projects by keyword or filter. However, it does not explicitly contrast this with get_project for retrieving a single project or list_erc_schemes for scheme metadata, so the guidance is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.0- First observed
get_project - First observed
list_erc_schemes - First observed
search_projects
TDQS
Each tool has a clear, distinct role: search_projects for querying multiple projects, get_project for a single project's full record, and list_erc_schemes for available filter values. No two tools overlap in purpose.
All tool names follow a consistent verb_noun snake_case pattern: search_projects, get_project, list_erc_schemes. The pattern is predictable and easy to infer.
Three tools is a well-scoped set for a read-only EU research project database: search, retrieve details, and list filter options. Each tool earns its place without redundancy.
The core workflow of searching for projects and retrieving full records is covered, with list_erc_schemes supporting filtering. Minor gaps like organization-level search or pagination controls may exist, but the essential surface is complete for the apparent domain.
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 Connectors
Live EU funding data in your AI: grant calls, programmes, consortium partners, VCs, incubators.
EU Funding & Tenders Portal (SEDIA search API) MCP.
Machine-readable entity discovery with provenance, trust and verified source evidence.
Search and fetch Wikidata entities, execute SPARQL queries, and resolve external identifiers.
Related MCP Servers
- AlicenseBqualityBmaintenanceEnables querying the Dutch RCE Cultural Heritage Objects linked data endpoint via SPARQL, with ontology guidance and query validation for safe, accurate results.22European Union Public 1.2
- FlicenseNot gradedqualityBmaintenanceEnables searching and retrieving biomedical literature from Europe PMC, including abstracts, full-text (JATS XML), text-mined annotations, citations, references, and database cross-links, through natural language queries and automated data staging.-
- AlicenseNot gradedqualityCmaintenanceEnables searching and accessing EU open datasets from data.europa.eu, including metadata discovery and dataset retrieval.16MIT
- AlicenseNot gradedqualityCmaintenanceProvides AI assistants with real-time, verified European funding data including open grant calls, programmes, consortium partners, VCs, and incubators, enabling natural language queries about EU funding.MIT
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/MCP-Hive/cordis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server