flexberry-markitdown-mcp CLAUDE.md

flexberry-markitdown-mcp CLAUDE.md is an instructions file for coding agents from Flexberry/flexberry-markitdown-mcp. It costs 935 tokens per session, scanned A, original, MIT.

Project instructions for a Flexberry MCP server that converts documents to Markdown and Markdown to PDF.

In plain words
What is it for?
Use them when developing or testing document conversion, including the Microsoft MarkItDown, Playwright, and WeasyPrint-based PDF paths.
Why use it?
They give developers the commands and architecture needed to install, test, lint, and run the server consistently.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/flexberry/flexberry-markitdown-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/Flexberry/flexberry-markitdown-mcp

Wrote 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.

agentmods badge for flexberry-markitdown-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/flexberry/flexberry-markitdown-mcp/claude-md.svg)](https://agentmods.dev/instructions/flexberry/flexberry-markitdown-mcp/claude-md)
Your own site
<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>
Per session 935 This file is loaded in full into every session.
When invoked 935 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash d0c8a64d2b6d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 78 lines

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:

  1. markdown_to_html() — markdown-it-py (commonmark preset + table/strikethrough rules) + mdit-py-plugins (tasklists, frontmatter) + Pygments syntax highlighting
  2. build_html_document() — wraps HTML body in a full document with GitHub-like CSS from styles.py
  3. html_to_pdf_playwright() or html_to_pdf_weasyprint() — writes HTML to a temp file, loads via file:// URL, generates PDF

Key Module Boundaries

  • server.py — MCP server setup, tool definitions, request routing. All tool handlers run blocking I/O via run_in_executor to 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) and convert_md_file_to_pdf(path). Chromium auto-install mirrors vscode-markdown-pdf behavior (ensure_chromium).
  • styles.pyDEFAULT_PDF_STYLES (GitHub-like CSS) and get_pygments_css() (auto-generated from Pygments formatter, cached).

Read the full file on GitHub · 78 lines

Changes

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.

  1. 4d ago First seen · 78 lines · 935 tokens per session scan A d0c8a64d2b6d

Subscribe to this mod's changes

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.