reqif-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@reqif-mcpDiff baseline v3 against v4"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
reqif-mcp
An MCP server for requirements engineering. Load ReqIF / .reqifz baselines (the OMG open standard exported by IBM DOORS, Polarion, Codebeamer, Jama…) and let any MCP client — Claude Desktop, Claude Code, Cursor — query requirements, follow trace links, detect orphans, and diff baselines in natural language.
Requirements management is where automotive, aerospace, rail and defense engineering actually lives, yet the MCP ecosystem has servers for Slack and GitHub and almost nothing for it. This fills that gap.
What it does
Ask your MCP client things like:
"Which ASIL-D requirements have no verifying test case?"
"Trace REQ-AEB-001 downstream — what tests cover it, directly or transitively?"
"Diff baseline v3 against v4: what changed, was added, was removed?"
"Show me the outline of the AEB specification."
Related MCP server: Specky
Tools exposed
Tool | Purpose |
| Parse and index a |
| Paginated search over ids, titles, text, attribute values, with optional attribute filter |
| Distinct values of an attribute with counts — the fastest way to discover how a baseline is structured |
| One requirement: all attributes + incoming/outgoing links |
| Transitive trace links, up/down/both, bounded depth |
| Requirements with no trace links — paginated, filterable (e.g. exclude headings via |
| Added / removed / modified requirements between two baselines, with changed attribute names |
| The specification tree (chapters, ordering) |
| Counts by type, loaded documents |
Install & run
pip install reqif-mcp # or: pip install -e . from a clone
reqif-mcp path/to/baseline.reqifzRegister in Claude Desktop / Claude Code (.mcp.json) — no arguments needed;
load files at runtime with the load_reqif tool:
{
"mcpServers": {
"reqif": { "command": "reqif-mcp" }
}
}Then, in your MCP client: "Load /path/to/baseline.reqifz and show me the document stats."
CLI arguments are an optional shortcut for small files
(reqif-mcp fixtures/small.reqif); large baselines are better loaded at
runtime so the stdio connection comes up instantly. Unloadable startup paths
log a warning instead of killing the server.
Architecture
.reqif / .reqifz ──▶ parser.py (lxml, namespace-agnostic) ──▶ model.py (dataclasses)
│
MCP client ◀── server.py (FastMCP, stdio) ◀── store.py (in-memory DuckDB: SQL over
requirements / attributes / relations)Design choices:
Namespace-agnostic parsing. Real-world ReqIF exports disagree on namespace prefixes and even URI revisions; matching on
local-name()makes the parser tool-vendor tolerant.Enum values resolved to labels.
ATTRIBUTE-VALUE-ENUMERATIONrefs are resolved throughDATATYPE-DEFINITION-ENUMERATION, so a status readsApproved, notev-4f2a….Type-level default values applied. An
ATTRIBUTE-DEFINITIONwith aDEFAULT-VALUEis materialized on every spec-object of that type that doesn't override it — otherwise baseline diffs silently miss defaulted attributes.DuckDB as the query engine. Orphan detection, transitive tracing and baseline diffs are set operations — SQL expresses them cleanly, and it scales to large baselines without an external service.
Hardened XML parsing. Entity resolution and network access disabled (XXE-safe).
XHTML flattened to text. MCP tools serve search and trace; formatting is noise for that job.
Development
pip install -e ".[dev]"
pytestTests run against a synthetic ADAS emergency-braking fixture (tests/fixtures/) — no proprietary data anywhere in this repo.
Known limitations
Deliberate scope cuts for v0.1 — the parser extracts all spec-object attributes dynamically (no fixed schema), but:
Attributes carried by
SPEC-RELATIONs andSPECIFICATIONs themselves are not extracted (only id, type, source/target).RELATION-GROUPs,ALTERNATIVE-IDs and vendorTOOL-EXTENSIONSblocks are ignored.Datatype constraints (min/max, string length) are not enforced; every value is a string.
XHTML values are flattened to plain text; embedded objects and formatting are dropped.
Roadmap
Semantic search over requirement text (embeddings)
MCP resources (expose specifications as browsable resources)
Coverage report tool: requirement type A → verifying type B matrix
Write-back: export a filtered subset as valid ReqIF
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ismaimrh/reqif-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server