Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/flexberry/flexberry-markitdown-mcp/claude-mdgit clone --depth 1 https://github.com/Flexberry/flexberry-markitdown-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/flexberry/flexberry-markitdown-mcp/claude-md)<a href="https://agentmods.dev/instructions/flexberry/flexberry-markitdown-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/flexberry/flexberry-markitdown-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00935 | $0.00935 |
| Opus 5 | $0.00467 | $0.00467 |
| Sonnet 5 | $0.00187 | $0.00187 |
| Haiku 4.5 | $0.00093 | $0.00093 |
Grade A, and why
flexberry-markitdown-mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
Flexberry MarkItDown MCP Server — MCP-сервер для двунаправленной конвертации документов: любой формат → Markdown (через Microsoft MarkItDown) и Markdown → PDF (через Playwright/WeasyPrint). Транспорт — stdio. Python 3.10+.
Commands
# Install in development mode (all test/lint deps)
pip install -e ".[dev]"
# Install with both PDF backends
pip install -e ".[weasyprint]"
playwright install chromium
# Run all tests
pytest
# Run a single test file / class / function
pytest tests/test_converter.py
pytest tests/test_converter.py::TestMarkdownToHtml::test_table
pytest tests/test_server.py::TestServerTools::test_call_tool_convert_to_pdf_basic
# Lint
ruff check src/
ruff format --check src/
# Auto-fix lint and format
ruff check --fix src/
ruff format src/
# Run server locally (for MCP client testing)
python -m flexberry_markitdown_mcp.server
Architecture
Pipeline: Any → Markdown → PDF
The server exposes 5 MCP tools. Two core conversion pipelines:
convert_to_markdown — delegates entirely to MarkItDown.convert(). Result is saved to disk via atomic write (temp file + rename). Handles Unicode/Cyrillic filenames through NFC/NFD normalization (resolve_existing_file).
convert_to_pdf — three-step pipeline in converter.py:
markdown_to_html()— markdown-it-py (commonmark preset + table/strikethrough rules) + mdit-py-plugins (tasklists, frontmatter) + Pygments syntax highlightingbuild_html_document()— wraps HTML body in a full document with GitHub-like CSS fromstyles.pyhtml_to_pdf_playwright()orhtml_to_pdf_weasyprint()— writes HTML to a temp file, loads viafile://URL, generates PDF
Key Module Boundaries
server.py— MCP server setup, tool definitions, request routing. All tool handlers run blocking I/O viarun_in_executorto avoid blocking the asyncio event loop. Logging goes to~/.flexberry-markitdown-mcp/server.log(not stdout, since stdout is MCP transport).converter.py— Pure conversion logic (no MCP dependency). Top-level entry points:convert_md_to_pdf(text)andconvert_md_file_to_pdf(path). Chromium auto-install mirrors vscode-markdown-pdf behavior (ensure_chromium).styles.py—DEFAULT_PDF_STYLES(GitHub-like CSS) andget_pygments_css()(auto-generated from Pygments formatter, cached).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 78 lines · 935 tokens per session scan A d0c8a64d2b6d
flexberry-markitdown-mcp CLAUDE.md is an instructions file published in the GitHub repository Flexberry/flexberry-markitdown-mcp (1 stars, last pushed 3mo ago), licensed MIT. It adds 935 tokens to every session, about $0.0047 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
docs-to-pdf CLAUDE.md
Claude Code instructions for jean-humann/docs-to-pdf, covering claude development guide for docs-to-pdf, project overview, development environment setup, using mise (recommended) and install mise (if not already installed).
go-docs-mcp CLAUDE.md
Instructions for drolosoft/go-docs-mcp, covering go-docs-mcp, build & run, architecture, key decisions and tools.
vkr-builder AGENTS.md
AGENTS.md instructions for maxbarsukov/vkr-builder, covering vkr-builder, как себя вести and основные команды.
docsift CLAUDE.md
Instructions for anishmoncivarghese/docsift, covering docsift, key documents (read before making product decisions), commands, architecture (src layout, package docsift) and hard rules.
agentic-resume-builder CLAUDE.md
Claude Code instructions for WtotdeD/agentic-resume-builder, covering agentic-resume-builder development guidelines, what this repo is, active technologies, package manager and validation.
mcp-server-anydoc AGENTS.md
AGENTS.md instructions for ofershap/mcp-server-anydoc, covering mcp-server-anydoc, when to use, install (agent instructions), tools and limits.