MCP Catalogs
Home

mcp-server-chart vs evernote-mcp-server

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

mcp-server-chart
by antvis
evernote-mcp-server
by brentmid
Stars★ 4,068★ 51
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityKnowledge GraphAI / LLM Tools
LanguageTypeScriptThrift
Last committhis month2 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

evernote-mcp-server · Summary

Evernote MCP server for accessing notes via OAuth, with Docker support and recent updates.

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

evernote-mcp-server · Use cases

  • Querying personal knowledge base using natural language prompts
  • Searching for specific information across all Evernotes
  • Summarizing notes related to specific topics or projects

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

evernote-mcp-server · Install

Installation

Docker Deployment (Recommended)

git clone https://github.com/brentmid/evernote-mcp-server.git
cd evernote-mcp-server
cp .env.example .env
# Edit .env with your Evernote API credentials
docker-compose up --build

Local Development

git clone https://github.com/brentmid/evernote-mcp-server.git
cd evernote-mcp-server
npm install
# Set environment variables
export EVERNOTE_CONSUMER_KEY="your-consumer-key"
export EVERNOTE_CONSUMER_SECRET="your-consumer-secret"
# Generate SSL certificates (see README for details)
npx node index.js

Claude Desktop Configuration

Add to Claude Desktop config.json:

"mcpServers": {
  "evernote": {
    "command": "npx",
    "args": ["evernote-mcp-server"]
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.