
Markdown Ai Mcp
- Updated June 15, 2026
- CSOAI-ORG/markdown-ai-mcp
markdown-ai-mcp is a MCP server that connects your agent to AI-assisted Markdown document operations over stdio.
About
markdown-ai-mcp is a Model Context Protocol server from MEOK AI Labs that connects AI coding agents to Markdown-focused operations over a stdio transport. Developers ship enormous amounts of Markdown—README files, ADRs, Skillselion-style SKILL.md assets, and launch notes—and this MCP keeps those edits inside the agent loop instead of bouncing through ad-hoc scripts. The package is published on PyPI as markdown-ai-mcp at version 1.0.4 with the standard MCP registry descriptor. Use it when you want structured tool calls for parsing, generating, or refactoring Markdown while you build documentation alongside code. Complexity stays beginner-friendly: register stdio, ensure Python can launch the package, and grant the agent access to repo paths you care about. It complements generic file tools by signaling Markdown-specific intent in the catalog, though you should still use review skills before publishing customer-facing docs.
- markdown-ai-mcp v1.0.4 PyPI stdio MCP server by MEOK AI Labs
- Bridges agent sessions to Markdown-centric doc workflows
- Fits SKILL.md, README, and changelog maintenance
- Official MCP server.schema.json 2025-12-11 metadata
- GitHub source at CSOAI-ORG/markdown-ai-mcp
Markdown Ai Mcp by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add markdown-ai-mcp -- uvx markdown-ai-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Package | markdown-ai-mcp |
|---|---|
| Transport | STDIO |
| Auth | None |
| Last updated | June 15, 2026 |
| Repository | CSOAI-ORG/markdown-ai-mcp ↗ |
What it does
Let your coding agent read, transform, and draft Markdown files through MCP instead of fragile shell one-liners or manual paste.
Who is it for?
Best when you're maintaining repo docs, skill files, and technical writing with Claude Code or Cursor.
Skip if: WYSIWYG CMS teams or workflows that live entirely in Notion/Google Docs without local.md files.
What you get
You get MCP tools tuned for Markdown workflows so READMEs and specs update in the same session as code changes.
- MCP-exposed Markdown manipulation tools for the agent
- Tighter doc-update loops alongside code commits
By the numbers
- Version 1.0.4
- Package identifier markdown-ai-mcp on PyPI
- stdio MCP transport
README.md
Markdown Ai MCP
Markdown utilities MCP — format, lint, convert (HTML/PDF), table generation, TOC builder
Markdown utilities MCP — format, lint, convert (HTML/PDF), table generation, TOC builder. MIT.
🚀 Quick Start
# Install via pip
pip install markdown_ai_mcp
# Or install via Smithery
npx -y @smithery/cli@latest install markdown-ai-mcp --client claude
✨ Features
- MCP protocol compliant
- Easy installation
- Well-documented API
- Production-ready
- Active maintenance
📖 Documentation
🛡️ Compliance
This MCP server is built with EU AI Act compliance built-in:
- ✅ Article 9 — Risk Management System
- ✅ Article 13 — Transparency & Instructions for Use
- ✅ Article 15 — Bias Detection & Testing
- ✅ Article 26 — FRIA Support (where applicable)
- ✅ Article 50 — AI Content Watermarking (where applicable)
Need help getting compliant? Book a free 15-min diagnostic →
🏢 Enterprise
Need custom development, SLA guarantees, or white-label deployment?
- Pro: $99/mo — Full MCP suite + EU AI Act tracking
- Enterprise: $499/mo — Custom dev + SLA + Dedicated support
View Pricing → | Contact Sales →
🤝 Part of the MEOK Ecosystem
This server is part of the MEOK AI Labs ecosystem — 300+ MCP servers for sovereign AI governance.
| Domain | Purpose |
|---|---|
| councilof.ai | EU AI Act compliance marketplace |
| safetyof.ai | AI safety & monitoring |
| meok.ai | Sovereign AI platform |
| cobolbridge.ai | Legacy modernization |
📜 License
MIT © CSOAI-ORG
Built with 💜 by MEOK AI Labs · UK Companies House 16939677
MIT © [MEOK AI Labs](https://meok.ai)Pairs with MEOK Governance Suite
Build something that touches users? You need compliance. MEOK ships 38 governance MCPs that drop in alongside this tool — EU AI Act, DORA, NIS2, CRA, GDPR, ISO 42001, FDA SaMD, MDR, Basel, MiFID II, MiCA, COPPA, and more.
# One-shot install of the governance pack
npx meok-setup --pack governance
Free tier: 10 calls/day per MCP. Pro tier (£79/mo): unlimited + cryptographically signed compliance attestations your auditor verifies independently.
→ Full catalogue: councilof.ai/catalogue → MEOK AI Labs: meok.ai
💸 Try MEOK in 30 seconds — instant buy ladder
| Tier | Price | What you get | Stripe |
|---|---|---|---|
| Smoke test | £1 | Signed sample MCP-Hardening report + Article 50 PDF | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
| Quick Kit | £9 | EU AI Act Article 50 implementation guide (C2PA + EU-Icon) | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
| Founder Call | £29 | 30-min 1-on-1 with the founder | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
Refundable. UK Stripe — VAT-clean. Builds on the 81-MCP MEOK fleet. Verify any signed report at https://meok.ai/verify.
Configuration
Add to your claude_desktop_config.json (Claude Desktop) or your MCP client config:
{
"mcpServers": {
"markdown-ai-mcp": {
"command": "uvx",
"args": ["markdown-ai-mcp"]
}
}
}
Or: pip install markdown-ai-mcp then run the markdown-ai-mcp command (stdio transport).
Examples
Once configured, ask your assistant, for example:
- "Use
convert_to_htmlto …" - "Use
generate_tocto …" - "Use
lint_markdownto …"
Recommended MCP Servers
How it compares
Markdown-focused MCP integration, not a static-site generator or Pandoc CLI skill by itself.
FAQ
Who is markdown-ai-mcp for?
Developers and founders who keep product knowledge in Markdown and want their coding agent to manipulate those files via MCP.
When should I use markdown-ai-mcp?
Use it during build and docs passes when you need agents to draft, restructure, or batch-edit Markdown in your repository.
How do I add markdown-ai-mcp to my agent?
Install markdown-ai-mcp from PyPI, configure it as a stdio MCP server in your host JSON, and reload the agent so Markdown tools are exposed.