Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
MarkItDown MCP Server
file-text

MarkItDown MCP Server MCP Server

Document to markdown conversion

markdownconversiondocumentsoffice

About

## MarkItDown MCP Server: Markdown Conversion Utility The **MarkItDown MCP Server** provides powerful Markdown conversion capabilities directly within Google Antigravity, enabling AI assistants to convert various file formats to clean Markdown programmatically. This integration brings document-to-Markdown conversion to your development workflow. ### Why MarkItDown MCP? - **Multi-Format Input**: Convert from PDF, Word, HTML, and other formats to Markdown - **Clean Output**: Generate well-structured, readable Markdown output - **Image Handling**: Extract and reference images from source documents - **Table Preservation**: Maintain table structures in Markdown format - **Metadata Extraction**: Capture document metadata as YAML frontmatter ### Key Features #### 1. Document Conversion ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert this Word document to clean Markdown format" }], tools=[{ "name": "markitdown_convert", "description": "Convert to Markdown" }] ) ``` #### 2. HTML to Markdown ```python # Convert HTML response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert this webpage HTML to Markdown preserving structure" }], tools=[{"name": "markitdown_html", "description": "HTML to Markdown"}] ) ``` #### 3. PDF Extraction ```python # Convert PDF to Markdown response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Extract content from this PDF and convert to Markdown" }], tools=[{"name": "markitdown_pdf", "description": "PDF to Markdown"}] ) ``` #### 4. Batch Processing ```python # Convert multiple files response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert all documents in this folder to Markdown files" }], tools=[{"name": "markitdown_batch", "description": "Batch conversion"}] ) ``` ### Configuration ```json { "mcpServers": { "markitdown": { "command": "npx", "args": ["-y", "@anthropic/mcp-markitdown"], "env": { "OUTPUT_STYLE": "github" } } } } ``` ### Use Cases **Documentation Migration**: Convert existing documentation to Markdown for static site generators. **Content Extraction**: Extract and repurpose content from various document formats. **Knowledge Base Building**: Convert documents to Markdown for knowledge management systems. **Blog Migration**: Convert Word or HTML content to Markdown for CMS platforms. The MarkItDown MCP Server brings document-to-Markdown conversion directly into your development workflow, enabling seamless content transformation.

Installation

Configuration
{
  "mcpServers": {
    "markitdown": {
      "mcpServers": {
        "markitdown": {
          "args": [
            "markitdown-mcp"
          ],
          "command": "uvx"
        }
      }
    }
  }
}

How to Use

  1. 1Office document conversion
  2. 2PDF to markdown
  3. 3Image text extraction

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers