Bidirectional CSV <> JSON <> Markdown transformer
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Bidirectional CSV βοΈ JSON βοΈ Markdown transformer exposed as an MCP (Model Context Protocol) server with HTTP transport.
docbot-mcp is a Model Context Protocol server that provides tools for converting between CSV, JSON, and Markdown formats. It's built on the Model Context Protocol and designed for deployment on serverless platforms like AWS App Runner.
@modelcontextprotocol/sdk β MCP protocol implementation@rflukerii/docbot β Document conversion utilitiesexpress β HTTP server frameworkzod β Input validationThe server starts on http://localhost:3000 with the MCP endpoint at /docbot-mcp.
All tools accept input as text parameters and return formatted text responses.
Converts a CSV string to JSON format.
Input: csv (string)
Output: JSON array as string
Converts a JSON array to CSV format.
Input: json (string)
Output: CSV string
Converts a CSV string to a Markdown table.
Input: csv (string)
Output: Markdown table string
Converts a JSON array to a Markdown table.
Input: json (string)
Output: Markdown table string
The server uses StreamableHTTPServerTransport instead of stdio for better compatibility with containerized environments. Each request to /docbot-mcp creates a new server instance, processes the MCP request, and returns the result.
index.js β Main HTTP server entry point (AWS App Runner compatible)index-stdio.js β Stdio transport version (for local/stdio-based clients)package.json β Dependencies and scriptsThe server includes a start script configured for AWS App Runner:
Steps to deploy:
npm installnpm startExample Dockerfile:
node index.js β For containerized environmentsnode index-stdio.js β For direct CLI/stdio clientsEdit index.js and use the server.registerTool() pattern:
MIT
See CHANGELOG.md for version history and updates.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/docbot-mcp)<a href="https://allmcps.com/mcp/docbot-mcp"><img src="https://allmcps.com/api/badge/docbot-mcp?style=directory" alt="Docbot MCP on AllMCPs" /></a>