regs-knowledge
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., "@regs-knowledgeWhat are the braking requirements under GB 7258? Include standard, clause, and original text."
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.
Automotive Regulation Intelligent MCP Platform (regs-mcp)
Turn domestic and international automotive regulations and standards into intelligent capabilities that are searchable, comparable, traceable, capable of Q&A with citations, and callable by enterprise systems, provided as an MCP service.
Features
Intelligent Regulation/Clause Processing Core: retieval, Q&A with citations, comparison (planned).
Mandatory provenance: every compliance conclusion must carry the standard number, clause number, and an excerpt of the original text; conclusions without provenance are automatically downgraded to
unknownand flagged as requiring manual review.Unified protocol: MCP 2026-07-28 + Streamable HTTP; both the Java platform and 飞书 can directly invoke it as MCP clients, with no separate adaptation required for either party.
Regulation comparison: comparsion of domestic and international regulations, comparison of current standards and drafts for comment, and export to editable Excel (planned).
Related MCP server: spec-assistant
Architecture
src/regs_mcp/
├── core/ 领域模型与引用强制规则(不依赖 MCP/LLM/DB)
├── retrieval/ 数据持久化与混合检索(SQLite + 纯 Python 打分,零外部依赖)
├── llm/ OpenAI 兼容 LLM 客户端 + 离线 mock 兜底
├── qa/ 问答管线(检索→草稿→引用校验→结构化)
├── ingest/ 种子数据加载
├── mcp/ MCP 适配层(regs-knowledge 智能核)
├── feishu/ 飞书适配器(规划)
└── eval/ 评测集 + 指标Architecture Principles
Dependency Inversion (DIP): the domain/application layer only defines ports; capabilities such as retrieval, LLM, and export are injected by the infra layer as replaceable implementations. Switching between open-source components and self-developed implementations does not affect the core logic.
Standard protocol first: MCP 2026-07-28 + Streamable HTTP; callers need no separate adaptation.
Extensible: tools are split by the rule "each server ≤ 8 tools"; retrievers, models, and export formats are registered as strategies/plugins; adding data sources or export formats does not change the core.
Pragmatic open source: parsing (MinerU/Docling), vector databases, 飞书 SDK, etc. can all be integrated; the protocol layer depends only on the official MCP SDK, avoiding lock-in to a single product.
Running
cd vehicle-regs-mcp
python -m venv .venv && . .venv/Scripts/activate
pip install -e ".[dev]"
# 灌入种子数据
PYTHONPATH=src python -c "from regs_mcp.ingest.loader import load_seed; \
from regs_mcp.retrieval.store import RegulationStore; \
s=RegulationStore('data/regs.db'); print(load_seed(s, 'data/seed'))"
# 评测(离线可跑,无需任何 API key)
PYTHONPATH=src python -m regs_mcp.eval.run
# 测试
pytest
# 启动 MCP 服务(Streamable HTTP)
PYTHONPATH=src python -m regs_mcp.mcp.serverIntegrating an LLM (Optional)
By default, it uses an offline mock (extractive synthesis) to ensure it can be demonstrated anywhere. To integrate a local or cloud LLM:
export REGS_LLM_BASE_URL=http://<endpoint>/v1
export REGS_LLM_API_KEY=<token>
export REGS_LLM_MODEL=<model>
export REGS_LLM_MOCK=0Evaluation
20 real business questions: 100% citation coverage, 95% clause location accuracy.
Roadmap
M1 (Completed): regs-knowledge intelligent core (retrieval + Q&A with citations + evaluation set).
M2: regs-graph (reverse lookup by part/function, impact analysis) + compare (domestic vs. international comparison, current vs. draft for comment, Excel export).
M3: regs-jobs (parsing and ingestion) + 飞书 bot adapter (event subscription → call MCP → rich text cards).
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.
Related MCP Connectors
EU compliance corpus across 8 frameworks (NIS2, DORA, AI Act, ISO 27001 + more) via MCP.
Page-cited retrieval for embedded docs, datasheets, MISRA, CMSIS, and RTOS references.
AI reasoning checks any document against known international standards before your agent acts on it.
Resolve, search and verify legal citations against the official sources, with provenance.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables querying US compliance regulations including HIPAA, CCPA, SOX, and more directly from AI assistants and MCP-compatible clients.228Apache 2.0
- FlicenseNot gradedqualityDmaintenanceEnables natural language queries on technical specifications and automated code compliance checks using local RAG with vector search, integrated via MCP.
- AlicenseNot gradedqualityBmaintenanceEnables document-based Q&A with multi-modal RAG, hybrid retrieval, knowledge graph reasoning, and multi-agent orchestration via MCP tools.4MIT
- FlicenseNot gradedqualityCmaintenanceEnables querying company knowledge base using RAG, providing accurate answers from internal documents via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/spray272598/vehicle-regs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server