Markdown Utilities Engine

Markdown Utilities Engine MCP Connector for Claude

A+

Equip your AI with programmatic Markdown tools. Deterministically generate Table of Contents (TOC) with correct anchor links and format perfect Markdown tables from JSON.

2 tools Official Updated Jun 28, 2026 Official Vinkius Partner

LLMs often struggle to construct long, structurally sound Markdown elements. Generating a 50-row Markdown table from raw data often leads to broken pipes (|), misaligned columns, or omitted rows. Creating a Table of Contents for a massive README is similarly tedious and error-prone for AI. The Markdown Utilities MCP solves this by delegating the heavy lifting to a precise JavaScript formatting engine.

The Superpowers

  • Flawless Tables: Instantly convert any complex array of JSON objects into a perfectly aligned Markdown table. No broken columns or missing separators.
  • Automated TOC: Parses huge Markdown documents and generates a nested Table of Contents with mathematically accurate GitHub-style URL slugs.
  • Zero-Latency Execution: Runs 100% locally on your machine, ensuring immediate response times for rendering huge documentation blocks.
  • Privacy First: Since it's a local utility, your proprietary internal documentation never leaves your infrastructure.
markdownjson-parsingtable-generationtoc-generatordata-formattingv8-engine

2 tools expose this connector's capabilities to your AI agent.

generate_table_from_json

It will automatically extract headers and format rows. Converts a JSON array of objects into a beautifully formatted Markdown table

generate_toc

It will return a nested list of bullet links pointing to the header slugs. Generates a perfect, linked Table of Contents (TOC) from a raw Markdown text

See how to talk to your AI agent using Markdown Utilities Engine.

Create a Table of Contents for this massive README text I pasted below.

Using the generate_toc tool: - [Introduction](#introduction) - [Features](#features) - [Deployment](#deployment)

Here is the raw database output JSON: `[{"id": 1, "name": "John", "role": "Admin"}, {"id": 2, "name": "Jane", "role": "User"}]`. Convert this into a Markdown table.

Using the generate_table_from_json tool: | id | name | role | |---|---|---| | 1 | John | Admin | | 2 | Jane | User |

When generating large Markdown tables, AI models commonly drop rows to save tokens or accidentally break the table structure by forgetting column separators. This MCP guarantees an absolutely perfect conversion from JSON.

Related Connectors