std

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

STD → RFC list.

Parameters

NameTypeRequiredDescription
numbernumberyes

Example call

Arguments

{
  "number": 1
}

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
rfcsarrayList of RFC identifiers
Full JSON Schema
{
  "type": [
    "object",
    "null"
  ],
  "properties": {
    "rfcs": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of RFC identifiers"
    }
  }
}

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