get_project

Pack: openaire · Endpoint: https://gateway.pipeworx.io/openaire/mcp

Fetch a funded research project by OpenAIRE ID — use after search_projects for full project details (budget breakdown, partner list, outputs).

Parameters

NameTypeRequiredDescription
idstringyesOpenAIRE id

Example call

Arguments

{
  "id": "ec_fp7__::346061"
}

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":"get_project","arguments":{"id":"ec_fp7__::346061"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_project', {
  "id": "ec_fp7__::346061"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "A single project object"
}

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.

Regenerated from source · build July 6, 2026