search_projects
Pack: openaire · Endpoint: https://gateway.pipeworx.io/openaire/mcp
“What EU / NIH / NSF projects are funded on [topic]” / “Horizon Europe projects on [X]” / “CORDIS lookup for [Y]” — search funded research projects (CORDIS for EC; also NSF, NIH, Wellcome Trust, others). Returns project title, funder, budget, coordinator, partners, dates. Use for funding-landscape analysis, grant precedent research.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
funder | string | no | Funder short name |
country | string | no | Coordinator country (ISO alpha-2) |
from_year | string | no | Earliest project start year |
Example call
Arguments
{
"query": "artificial intelligence ethics"
}
curl
curl -X POST https://gateway.pipeworx.io/openaire/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_projects","arguments":{"query":"artificial intelligence ethics"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_projects', {
"query": "artificial intelligence ethics"
});
More examples
{
"query": "renewable energy",
"funder": "NSF",
"country": "US",
"from_year": "2019"
}
Response shape
Always returns: query, total, page, page_size, count, results
| Field | Type | Description |
|---|---|---|
query | string | The search query that was executed |
total | number | null | Total number of matching projects |
page | number | null | Current page number (1-based) |
page_size | number | null | Number of results per page |
count | number | Number of results in this response |
results | array | Array of project objects |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query that was executed"
},
"total": {
"type": [
"number",
"null"
],
"description": "Total number of matching projects"
},
"page": {
"type": [
"number",
"null"
],
"description": "Current page number (1-based)"
},
"page_size": {
"type": [
"number",
"null"
],
"description": "Number of results per page"
},
"count": {
"type": "number",
"description": "Number of results in this response"
},
"results": {
"type": "array",
"description": "Array of project objects",
"items": {
"type": "object"
}
}
},
"required": [
"query",
"total",
"page",
"page_size",
"count",
"results"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openaire": {
"url": "https://gateway.pipeworx.io/openaire/mcp"
}
}
}
See Getting Started for client-specific install steps.