drio
Open app

MCP Server To Markdown

Source

Catalog onlyCatalog onlySTDIO

Overview

The mcp-server-to-markdown project is a tool that converts files into Markdown descriptions using Cloudflare AI services.

To use this project, upload your files to the Cloudflare AI service and utilize the provided MCP tool to-markdown to get the Markdown description of your files.

  • Upload files to Cloudflare AI service. - Retrieve Markdown descriptions for various file types. - Utilizes Cloudflare's tomarkdown API.
  1. Converting text files into Markdown format for documentation.
  2. Generating Markdown descriptions for images and other file types.
  3. Streamlining the process of creating Markdown content from existing files.

Add to your AI client

Use these steps to connect MCP Server To Markdown in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-to-markdown-fradser": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-to-markdown-fradser"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-to-markdown-fradser": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-to-markdown-fradser"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-to-markdown-fradser": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-to-markdown-fradser"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-to-markdown-fradser": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-to-markdown-fradser"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-to-markdown-fradser": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-to-markdown-fradser"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-to-markdown-fradser": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-to-markdown-fradser"
      ]
    }
  }
}

FAQ

What file types are supported?

The tool supports multiple file types including text and image files.

Do I need a Cloudflare account to use this tool?

Yes, you need to provide your Cloudflare API token and account ID in the environment variables.

Is there any cost associated with using Cloudflare AI services?

Please check Cloudflare's pricing for AI services as it may vary.