rfc_metadata

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

RFC index entry metadata.

Parameters

NameTypeRequiredDescription
numbernumberyes

Example call

Arguments

{
  "number": 9110
}

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":"rfc_metadata","arguments":{"number":9110}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('rfc_metadata', {
  "number": 9110
});

More examples

{
  "number": 2616
}

Response shape

FieldTypeDescription
doc_idstringRFC document ID
titlestringRFC title
datestringPublication date
current_statusstringCurrent status of the RFC
publication_statusstringPublication status
abstractstringRFC abstract
authorsarrayList of author names
Full JSON Schema
{
  "type": [
    "object",
    "null"
  ],
  "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"
    }
  }
}

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