record

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

Fetch full details for one Europeana item by id — a Europeana record id (the “id” field from search, e.g. “/2021601/foo”).

Parameters

NameTypeRequiredDescription
idstringyese.g. “2021601/foo”.
_apiKeystringnoEuropeana API key (auto-injected by the platform; or pass your own).

Example call

Arguments

{
  "id": "2021601/foo",
  "_apiKey": "your-europeana-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/europeana/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"record","arguments":{"id":"2021601/foo","_apiKey":"your-europeana-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('record', {
  "id": "2021601/foo",
  "_apiKey": "your-europeana-api-key"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "europeana": {
      "url": "https://gateway.pipeworx.io/europeana/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 10, 2026