rfc_metadata
Pack: rfc-editor · Endpoint: https://gateway.pipeworx.io/rfc-editor/mcp
RFC index entry metadata.
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_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
| Field | Type | Description |
|---|---|---|
doc_id | string | RFC document ID |
title | string | RFC title |
date | string | Publication date |
current_status | string | Current status of the RFC |
publication_status | string | Publication status |
abstract | string | RFC abstract |
authors | array | List 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.