wg

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

Working group by acronym.

Parameters

NameTypeRequiredDescription
acronymstringyes

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

FieldTypeDescription
resultsarrayArray 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.

Regenerated from source · build July 6, 2026