search

Pack: rfc-editor · Endpoint: https://gateway.pipeworx.io/rfc-editor/mcp

Substring search in title/abstract.

Parameters

NameTypeRequiredDescription
querystringyes
statusstringno

Example call

Arguments

{
  "query": "HTTP"
}

curl

curl -X POST https://gateway.pipeworx.io/rfc-editor/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search","arguments":{"query":"HTTP"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search', {
  "query": "HTTP"
});

More examples

{
  "query": "TLS",
  "status": "PROPOSED STANDARD"
}

Response shape

Always returns: query, count, results

FieldTypeDescription
querystringNormalized search query
countnumberNumber of results returned
resultsarrayArray of matching RFC entries
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Normalized search query"
    },
    "count": {
      "type": "number",
      "description": "Number of results returned"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "doc_id": {
            "type": "string",
            "description": "RFC document ID"
          },
          "title": {
            "type": "string",
            "description": "RFC title"
          },
          "date": {
            "type": "string",
            "description": "Publication date"
          },
          "current_status": {
            "type": "string",
            "description": "Current status of the RFC"
          },
          "publication_status": {
            "type": "string",
            "description": "Publication status"
          },
          "abstract": {
            "type": "string",
            "description": "RFC abstract"
          },
          "authors": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of author names"
          }
        }
      },
      "description": "Array of matching RFC entries"
    }
  },
  "required": [
    "query",
    "count",
    "results"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "rfc-editor": {
      "url": "https://gateway.pipeworx.io/rfc-editor/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026