← All Stars
public Star · 0.1.0
orrery/rfc-section
Bounded sections from named allowlisted RFC Editor documents.
Use this when
- You need a named RFC section, not the whole document
- You want bounded normative text for reasoning
Not for
- RFCs outside the allowlist
- Full-document dumps
- Editing RFCs
Inputs / Outputs
Inputs
| Name | Type | Notes |
|---|---|---|
rfc required |
string | — |
section required |
string | — |
Outputs
| Name | Type | Notes |
|---|---|---|
content |
string | — |
envelope |
signed-envelope | — |
Example
{
"method": "tools/call",
"params": {
"name": "get",
"arguments": {
"rfc": "9110",
"section": "3.1"
}
}
}Tools
get
Get a bounded named section from an allowlisted RFC Editor document · schema
{
"type": "object",
"properties": {
"rfc": {
"type": "string",
"enum": [
"9110",
"9111"
],
"default": "9110"
},
"section": {
"type": "string",
"default": "3.1"
}
},
"required": [
"rfc",
"section"
]
}In constellations
No constellation references this Star yet.