rfc_text
Pack: rfc-editor · Endpoint: https://gateway.pipeworx.io/rfc-editor/mcp
Full RFC plain text.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
number | number | yes |
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_text","arguments":{"number":9110}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rfc_text', {
"number": 9110
});
More examples
{
"number": 2616
}
Response shape
Always returns: rfc, format, body
| Field | Type | Description |
|---|---|---|
rfc | number | RFC number |
format | string | Response format |
body | string | Full RFC plain text content |
Full JSON Schema
{
"type": "object",
"properties": {
"rfc": {
"type": "number",
"description": "RFC number"
},
"format": {
"type": "string",
"enum": [
"text"
],
"description": "Response format"
},
"body": {
"type": "string",
"description": "Full RFC plain text content"
}
},
"required": [
"rfc",
"format",
"body"
]
}
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.