everything vs mindmap-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mindmap-mcp-server by YuChenSSR | |
|---|---|---|
| Stars | ★ 85,748 | ★ 231 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mindmap-mcp-server · Summary
MCP server that converts Markdown content to interactive mindmaps with HTML or file output options.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mindmap-mcp-server · Use cases
- Create visual mindmaps from structured Markdown content in AI conversations
- Convert project plans and documentation into interactive visualizations
- Save token costs by generating mindmap files rather than large HTML content
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmindmap-mcp-server · Install
Installation
pip install mindmap-mcp-serverOr using uvx:
uvx mindmap-mcp-serverOr using Docker:
docker pull ychen94/mindmap-converter-mcpClaude Desktop Configuration
{
"mcpServers": {
"mindmap": {
"command": "uvx",
"args": ["mindmap-mcp-server", "--return-type", "filePath"]
}
}
}