get_ietf_doc
Retrieve IETF RFC documents by number with pagination support, specifying start line and maximum lines to return. Access document content and metadata directly.
Instructions
Get an RFC document by its number in RFC editor Index with pagination support
Args:
number: The RFC number str (e.g., "1234")
start_line: The line number to start from (default: 1)
max_lines: Maximum number of lines to return (default: 200)
Returns:
A dictionary containing the document content and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_lines | No | ||
number | Yes | ||
start_line | No |
Input Schema (JSON Schema)
{
"properties": {
"max_lines": {
"default": 200,
"title": "Max Lines",
"type": "integer"
},
"number": {
"title": "Number",
"type": "integer"
},
"start_line": {
"default": 1,
"title": "Start Line",
"type": "integer"
}
},
"required": [
"number"
],
"title": "get_ietf_docArguments",
"type": "object"
}