A Model Context Protocol server for fetching IETF documents (RFCs) for Large Language Models.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-ietf": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol server for fetching IETF documents (RFCs) for Large Language Models.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search / developer-tools
Web and local search using Brave Search API
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Production ready MCP server with real-time search, extract, map & crawl.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Ietf and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol server for fetching IETF documents (RFCs) for Large Language Models.
This project implements a Model Context Protocol (MCP) server that provides access to IETF RFC documents. It enables Large Language Models to access RFC specifications through a standardized interface.
Key features:
pyproject.toml# Clone the repository
git clone https://github.com/tizee/mcp-server-ietf
cd mcp-server-ietf
# Install with pip
pip install -e .
# Start the server
mcp-server-ietf
Or use it with the MCP inspector:
npx @modelcontextprotocol/inspector uv run mcp-server-ietf
When connected to the server, the following tools are available:
list_docs_numberGet the total number of RFC documents available in the index.
get_docGet an RFC document by its number with pagination support.
Parameters:
number: The RFC number (e.g., "1234")start_line: The line number to start from (default: 1)max_lines: Maximum number of lines to return (default: 200)search_rfc_by_keywordSearch for RFC documents by keyword in their titles.
Parameters:
keyword: The search term to look for in RFC titles# Install development dependencies
uv install -e .[dev]
Run inspector with Makefile:
make dev
# Run tests
uv run pytest
Or using the Makefile:
make test
By default, the server caches RFC documents and the index at ~/.cache/ietf-doc-server.
LOG_LEVEL: Set the logging level (default: "DEBUG")MIT License - See LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.