person

Pack: ietf-datatracker · Endpoint: https://gateway.pipeworx.io/ietf-datatracker/mcp

Fetch an IETF Datatracker person record by numeric ID; returns name, email addresses, and affiliated organizations.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 12345
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('person', {
  "id": 12345
});

Response shape

FieldTypeDescription
idnumberPerson datatracker ID
namestringPerson’s name
emailstring | nullPerson’s email address
email_hashstring | nullMD5 hash of email
urlstring | nullPerson’s URL
photostring | nullPerson’s photo URL
Full JSON Schema
{
  "type": "object",
  "description": "Person object from IETF Datatracker API",
  "properties": {
    "id": {
      "type": "number",
      "description": "Person datatracker ID"
    },
    "name": {
      "type": "string",
      "description": "Person's name"
    },
    "email": {
      "type": [
        "string",
        "null"
      ],
      "description": "Person's email address"
    },
    "email_hash": {
      "type": [
        "string",
        "null"
      ],
      "description": "MD5 hash of email"
    },
    "url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Person's URL"
    },
    "photo": {
      "type": [
        "string",
        "null"
      ],
      "description": "Person's photo URL"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "ietf-datatracker": {
      "url": "https://gateway.pipeworx.io/ietf-datatracker/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026