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
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
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
| Field | Type | Description |
|---|---|---|
id | number | Person datatracker ID |
name | string | Person’s name |
email | string | null | Person’s email address |
email_hash | string | null | MD5 hash of email |
url | string | null | Person’s URL |
photo | string | null | Person’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.