Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-daedalus-mcp-rfc-editor": {
"args": [
"mcp-rfc-editor"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server for editing RFC TXT documents using the rfc-editor Python library.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-rfc-editor' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-rfc-editor against OSV.dev.
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 writing
【Star-crossed coders unite!⭐️】Model Context Protocol (MCP) server implementation providing Google News search capabilities via SerpAPI, with automatic news categorization and multi-language support.
URL to LLM-ready markdown — plus per-page category, page_structure, and query-driven highlights.
AI prompt optimization for 58+ platforms across 7 categories with custom platforms
Model Context Protocol (MCP) Server to connect your AI with any MediaWiki
MCP Security Weekly
Get CVE alerts and security updates for io.github.daedalus/mcp-rfc-editor and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
mcp-name: io.github.daedalus/mcp-rfc-editor
An MCP (Model Context Protocol) server for editing RFC TXT documents using the rfc-editor Python library.
pip install mcp-rfc-editor
python -m mcp_rfc_editor
from mcp_rfc_editor import main
main()
The server exposes the following tools:
load_rfc - Load and parse an RFC TXT file (creates session)download_rfc - Download an RFC from rfc-editor by ID (creates session)create_rfc - Create a new empty RFC document (creates session)get_document - Get the current document from session contextsave_rfc - Save an RFC document to TXT formatset_title - Set the document titleset_abstract - Set the document abstractadd_section - Add a new sectionupdate_section - Update an existing sectiondelete_section - Delete a sectionlist_sections - List all sections in the documentset_copyright - Set copyright noticeset_authors - Set document authorsto_dict - Convert document to dictionaryThe server maintains session context so you don't need to pass the full document object on every call:
# 1. Download an RFC - returns Session ID
result = download_rfc(rfc_id="791")
# Returns: {document..., "Session ID": "abc-123"}
# 2. Use session ID to get title (no document needed)
get_title(session_id="abc-123")
# 3. Modify and changes are persisted
set_title(session_id="abc-123", title="New Title")
Alternatively, you can always pass the full document object directly (legacy mode).
pip install -e ".[dev]"
pytest tests/
black src/ tests/
ruff check src/ tests/