documents_search

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

Search IETF Datatracker documents with optional filters for state (e.g. “active”), type (draft | rfc | charter), or name substring; returns document names, titles, and statuses.

Parameters

NameTypeRequiredDescription
statesstringnoComma-sep state ids (e.g. “active”).
typestringnodraft | rfc | charter | conflrev | …
name__containsstringnoSubstring filter on the name.
limitnumberno1-1000 (default 20).
offsetnumberno

Example call

Arguments

{
  "type": "rfc",
  "limit": 50
}

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":"documents_search","arguments":{"type":"rfc","limit":50}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('documents_search', {
  "type": "rfc",
  "limit": 50
});

More examples

{
  "name__contains": "quic",
  "states": "active",
  "type": "draft"
}

Response shape

FieldTypeDescription
countnumberTotal number of matching documents
nextstring | nullURL to next page of results
previousstring | nullURL to previous page of results
resultsarrayArray of documents matching the search criteria
Full JSON Schema
{
  "type": "object",
  "description": "Paginated documents search results",
  "properties": {
    "count": {
      "type": "number",
      "description": "Total number of matching documents"
    },
    "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 documents matching the search criteria",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Document name"
          },
          "title": {
            "type": "string",
            "description": "Document title"
          },
          "rfc": {
            "type": [
              "number",
              "null"
            ],
            "description": "RFC number if applicable"
          },
          "pages": {
            "type": [
              "number",
              "null"
            ],
            "description": "Number of pages"
          },
          "abstract": {
            "type": "string",
            "description": "Document abstract"
          },
          "published": {
            "type": [
              "string",
              "null"
            ],
            "description": "Publication date"
          },
          "status": {
            "type": "string",
            "description": "Document status"
          },
          "type": {
            "type": "string",
            "description": "Document type"
          }
        }
      }
    }
  }
}

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 7, 2026