get_rfc_section
Extract specific sections from IETF RFC documents by providing the RFC number and section title or number for targeted information retrieval.
Instructions
Get a specific section from an RFC
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number | Yes | RFC number (e.g. "2616") | |
section | Yes | Section title or number to retrieve |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"number": {
"description": "RFC number (e.g. \"2616\")",
"type": "string"
},
"section": {
"description": "Section title or number to retrieve",
"type": "string"
}
},
"required": [
"number",
"section"
],
"type": "object"
}