get_entity

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

Fetch the raw JSON-LD PermID record for a numeric PermID (e.g. “4295905573”). Returns the full linked-data payload from api-eit.refinitiv.com under the key “raw” — extract organization name, LEI, RIC, industry codes, and headquarters from the raw fields.

Parameters

NameTypeRequiredDescription
permidstringyesPermID (numeric string, e.g., “4295905573”)

Example call

Arguments

{
  "permid": "4295905573"
}

curl

curl -X POST https://gateway.pipeworx.io/permid/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_entity","arguments":{"permid":"4295905573"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_entity', {
  "permid": "4295905573"
});

Response shape

Always returns: permid_url, permid, raw

FieldTypeDescription
permid_urlstringFull PermID URL for the entity
permidstringPermID numeric identifier
rawobjectFull JSON-LD record from PermID API
Full JSON Schema
{
  "type": "object",
  "properties": {
    "permid_url": {
      "type": "string",
      "description": "Full PermID URL for the entity"
    },
    "permid": {
      "type": "string",
      "description": "PermID numeric identifier"
    },
    "raw": {
      "type": "object",
      "description": "Full JSON-LD record from PermID API"
    }
  },
  "required": [
    "permid_url",
    "permid",
    "raw"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build June 27, 2026