MCP Catalogs
Home

everything vs datawrapper-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
datawrapper-mcp
by palewire
Stars★ 85,748★ 38
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

datawrapper-mcp · Summary

An MCP server for creating Datawrapper charts through AI assistants, with comprehensive chart management tools.

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

datawrapper-mcp · Use cases

  • Create data visualizations by simply describing what chart you want from your data
  • Publish and share charts through AI assistants without leaving your conversation
  • Update chart styling and data dynamically through conversational commands

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

datawrapper-mcp · Install

Installation

  1. Get your Datawrapper API token from https://app.datawrapper.de/account/api-tokens
  2. Install the package via pip: pip install datawrapper-mcp
Claude Desktop Configuration

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "datawrapper": {
      "command": "uvx",
      "args": ["datawrapper-mcp"],
      "env": {
        "DATAWRAPPER_ACCESS_TOKEN": "your-token-here"
      }
    }
  }
}

For other clients (Claude Code, VS Code Copilot, Cursor, ChatGPT, OpenAI Codex) and Kubernetes deployment, see the [installation guide](INSTALLATION.md).

Comparison generated from public README + GitHub signals. Last updated automatically.