Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
list_ietf_docs_number | Get the total number of IETF RFC documents available in RFC editor Index |
get_ietf_doc | 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 |
search_ietf_rfc_by_keyword | Search for IETF RFC documents from RFC Editor Index by keyword in their titles
Args:
keyword: The keyword to search for
Returns:
A list of matching RFCs with their numbers and titles |