Skip to main content
Glama

cordis-mcp

MCP server for CORDIS — EU-funded research projects, including European Research Council (ERC) grants.

npx -y github:MCP-Hive/cordis-mcp

No 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

query

string

Keywords matched against project titles

search_abstracts

boolean

Also match abstracts — broader recall, slower. Default false

erc_only

boolean

Restrict to ERC grants (ERC-STG, ERC-COG, ERC-ADG, ERC-POC, …)

funding_scheme

string

Scheme code prefix, e.g. ERC-ADG or MSCA. Overrides erc_only

country

string

ISO-2 country code of the coordinating organisation

min_funding

number

Minimum EC contribution in EUR

start_date_from / start_date_to

string

Start-date window, YYYY-MM-DD

limit

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/query

Two things about that endpoint are worth knowing before changing queries:

  1. 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 at https://cordis.europa.eu/search?format=json is the documented fallback (note: its num parameter caps at 50, and num=100 silently returns 10).

  2. 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 CORDIS

Verify the published one-liner:

npm run smoketest -- github:MCP-Hive/cordis-mcp

server/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 tools
get_projectA

Fetch the full record for one EU-funded project by its grant agreement number, including abstract, funding, dates, funding scheme, and participating organisations.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesGrant agreement number / CORDIS project id, e.g. '101019932'.
include_participantsNoInclude the list of participating organisations. Default true.

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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}.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results, 1-50. Default 10.
queryNoKeywords matched against project titles.
countryNoISO 2-letter country code of the coordinating organisation, e.g. 'DE', 'FR', 'NL'.
erc_onlyNoRestrict to European Research Council grants (ERC-STG, ERC-COG, ERC-ADG, ERC-POC and related schemes).
min_fundingNoMinimum total project cost in EUR.
start_date_toNoLatest project start date, as YYYY-MM-DD.
funding_schemeNoRestrict 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_fromNoEarliest project start date, as YYYY-MM-DD.
search_abstractsNoAlso match against project abstracts. Much broader recall but noticeably slower. Default false.

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

  1. 3 tool updatesv0.1.0
    • First observedget_project
    • First observedlist_erc_schemes
    • First observedsearch_projects

TDQS

A4.2/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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

ActivityMaintained
ResponsivenessNo issues

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

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    Enables querying the Dutch RCE Cultural Heritage Objects linked data endpoint via SPARQL, with ontology guidance and query validation for safe, accurate results.
    2
    2
    European Union Public 1.2
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables 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.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables searching and accessing EU open datasets from data.europa.eu, including metadata discovery and dataset retrieval.
    16
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides 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

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