wg
Pack: ietf-datatracker · Endpoint: https://gateway.pipeworx.io/ietf-datatracker/mcp
Working group by acronym.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
acronym | string | yes |
Example call
Arguments
{
"acronym": "quic"
}
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":"wg","arguments":{"acronym":"quic"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('wg', {
"acronym": "quic"
});
More examples
{
"acronym": "httpbis"
}
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Array of matching working groups |
Full JSON Schema
{
"type": "object",
"description": "Working group response from IETF Datatracker API",
"properties": {
"results": {
"type": "array",
"description": "Array of matching working groups",
"items": {
"type": "object",
"properties": {
"acronym": {
"type": "string",
"description": "Working group acronym"
},
"name": {
"type": "string",
"description": "Working group name"
},
"state": {
"type": "string",
"description": "Working group state"
},
"type": {
"type": "string",
"description": "Working group type"
},
"description": {
"type": "string",
"description": "Working group description"
}
}
}
}
}
}
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.