markmap-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
markmap-mcp-server by jinzcdev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 200 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
markmap-mcp-server · Summary
An MCP server that converts Markdown to interactive mind maps with export support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
markmap-mcp-server · Use cases
- Creating visual representations of structured documents and notes
- Converting technical documentation to visual mind maps for better understanding
- Generating interactive mind maps for presentations or brainstorming sessions
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
markmap-mcp-server · Install
Installation
Installing via Smithery
npx -y @smithery/cli install @jinzcdev/markmap-mcp-server --client claudeManual Installation
npm install @jinzcdev/markmap-mcp-server -g
npx -y @jinzcdev/markmap-mcp-serverConfiguration
Add to your MCP client configuration:
{
"mcpServers": {
"markmap": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@jinzcdev/markmap-mcp-server"]
}
}
}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-everything