Rfcxml Mcp

Created By
shuji-bonji5 months ago
An MCP server that parses RFC documents in XML format, providing structured access to: - Document structure and sections - Normative requirements (MUST/SHOULD/MAY) - RFC dependencies (normative/informative references) - Implementation checklists - Term definitions Supports both RFC XML (RFC 8650+) and text fallback for older RFCs.
Overview

what is Rfcxml Mcp?

Rfcxml Mcp is a Model Context Protocol (MCP) server designed for structured understanding of RFC documents in XML format, enabling users to access document structures, normative requirements, dependencies, implementation checklists, and term definitions.

how to use Rfcxml Mcp?

To use Rfcxml Mcp, configure your MCP settings by adding the server command to your configuration file, or install it globally using npm. You can then utilize various tools provided by the server to extract information from RFC documents.

key features of Rfcxml Mcp?

  • Structured extraction of normative requirements (MUST/SHOULD/MAY)
  • Construction of RFC dependency graphs
  • Management of definition scopes
  • Generation of implementation checklists
  • Automatic fallback to text format for older RFCs

use cases of Rfcxml Mcp?

  1. Extracting normative requirements from RFC documents.
  2. Generating implementation checklists for compliance.
  3. Analyzing dependencies between different RFCs.
  4. Providing structured access to RFC document sections.

FAQ from Rfcxml Mcp?

  • What formats does Rfcxml Mcp support?

Rfcxml Mcp supports RFCXML format for RFCs published after RFC 8650 and provides a text fallback for older RFCs.

  • Is Rfcxml Mcp free to use?

Yes! Rfcxml Mcp is open-source and free to use.

  • How accurate is the output from Rfcxml Mcp?

The accuracy depends on the format; XML parsing is high accuracy, while text parsing may be lower.

Server Config

{
  "mcpServers": {
    "rfcxml": {
      "command": "npx",
      "args": [
        "-y",
        "@shuji-bonji/rfcxml-mcp"
      ]
    }
  }
}
Project Info
Created At
5 months ago
Updated At
5 months ago
Author Name
shuji-bonji
Star
-
Language
-
License
-

Recommend Servers

View All
Trainzilla Mcp

8 hours ago
Shippo
@Shippo

2 days ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

a day ago