wgs_search

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

List all IETF working groups in Datatracker with pagination; returns acronyms, names, area, and charter status for every active and concluded WG.

Parameters

NameTypeRequiredDescription
limitnumberno
offsetnumberno

Example call

Arguments

{
  "limit": 100
}

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":"wgs_search","arguments":{"limit":100}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('wgs_search', {
  "limit": 100
});

Response shape

FieldTypeDescription
countnumberTotal number of working groups
nextstring | nullURL to next page of results
previousstring | nullURL to previous page of results
resultsarrayArray of working groups
Full JSON Schema
{
  "type": "object",
  "description": "Paginated working groups list",
  "properties": {
    "count": {
      "type": "number",
      "description": "Total number of working groups"
    },
    "next": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to next page of results"
    },
    "previous": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to previous page of results"
    },
    "results": {
      "type": "array",
      "description": "Array of 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