GnistAI GnistAI
Log in

CORDIS (EU Research Projects)

EU-funded research projects and grants — search Horizon Europe, Horizon 2020, and earlier framework programmes covering 1M+ projects with funding details, participants, and results.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Science

Data source: CORDIS (cordis.europa.eu)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/cordis/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-cordis": {
      "url": "https://context.gnist.ai/mcp/cordis/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/cordis/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_projects", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/cordis/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/cordis/search_projects?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/cordis/search_projects",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc cordis

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

search_projects
Search EU-funded research projects by keyword.
ParameterTypeRequiredDescription
querystringrequiredSearch term for EU research projects (e.g. "quantum computing", "climate adaptation", "cancer biomarkers", "smart cities").
programmeanyoptionalFilter by EU framework programme: "horizon-europe", "horizon-2020", "fp7", "fp6", "fp5". Omit for all.
countryanyoptionalFilter by coordinating country (e.g. "Germany", "France", "Norway").
limitintegeroptionalNumber of results to return (1-50, default 20). (default: 20)
get_project
Get an EU research project by its grant reference number.
ParameterTypeRequiredDescription
referencestringrequiredEU project grant reference number (e.g. "101057437", "964363").
search_by_programme
List projects from a specific EU framework programme.
ParameterTypeRequiredDescription
programmestringrequiredEU framework programme: "horizon-europe", "horizon-2020", "fp7", "fp6", "fp5".
limitintegeroptionalNumber of results to return (1-50, default 20). (default: 20)
get_recent_projects
Get the most recently started EU research projects.
ParameterTypeRequiredDescription
limitintegeroptionalNumber of results to return (1-50, default 20). (default: 20)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related