bcp
Pack: rfc-editor · Endpoint: https://gateway.pipeworx.io/rfc-editor/mcp
BCP → RFC list.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
number | number | yes |
Example call
Arguments
{
"number": 14
}
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":"bcp","arguments":{"number":14}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bcp', {
"number": 14
});
Response shape
| Field | Type | Description |
|---|---|---|
rfcs | array | List 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.