MCP Catalogs
Home

mcp-server-chart vs raindrop-io-mcp-server

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

mcp-server-chart
by antvis
raindrop-io-mcp-server
by hiromitsusasaki
Stars★ 4,068★ 72
30d uses10,239
Score8443
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityKnowledge GraphAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month12 mo ago

mcp-server-chart · Summary

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

raindrop-io-mcp-server · Summary

MCP server enabling LLMs to create, search, and filter Raindrop.io bookmarks.

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

raindrop-io-mcp-server · Use cases

  • LLM assistants can bookmark resources during conversations for later retrieval
  • AI-powered organization and tagging of bookmarked content
  • Automated bookmark management based on content analysis

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"]
    }
  }
}

raindrop-io-mcp-server · Install

Installation

Via Smithery (Recommended)

npx -y @smithery/cli install @hiromitsusasaki/raindrop-io-mcp-server --client claude

Manual Installation

  1. Clone the repository:
git clone https://github.com/hiromitsusasaki/raindrop-io-mcp-server
cd raindrop-io-mcp-server
  1. Install dependencies:
npm install
  1. Set up environment variables:

Create a .env file and add your Raindrop.io API token

RAINDROP_TOKEN=your_access_token_here
  1. Build:
npm run build

Claude Desktop Configuration

Add to your Claude Desktop config file (claude_desktop_config.json):

{
  "mcpServers": {
    "raindrop": {
      "command": "node",
      "args": ["PATH_TO_BUILD/index.js"],
      "env": {
        "RAINDROP_TOKEN": "your_access_token_here"
      }
    }
  }
}

Restart Claude Desktop after making changes.

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