mcp-server-chart vs mcp-stytch-consumer-todo-list
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-stytch-consumer-todo-list by stytchauth | |
|---|---|---|
| Stars | ★ 4,068 | ★ 27 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-stytch-consumer-todo-list · Summary
Cloudflare Workers MCP server for TODO list management with Stytch authentication.
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
mcp-stytch-consumer-todo-list · Use cases
- AI agents managing personal TODO lists with authentication
- Demonstration of integrating MCP with authentication systems
- Example of building MCP servers on serverless platforms
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor 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"]
}
}
}mcp-stytch-consumer-todo-list · Install
Installation
- Clone the repository:
git clone https://github.com/stytchauth/mcp-stytch-consumer-todo-list.git - Install dependencies:
npm i - Copy environment templates:
cp .env.template .env.localandcp .dev.vars.template .dev.vars - Configure environment variables with your Stytch credentials
- Run locally:
npm run dev - MCP server is available at
http://localhost:3000/mcp
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"stytch-todo": {
"command": "npx",
"args": ["@modelcontextprotocol/inspector@latest"],
"env": {
"STYTCH_PROJECT_ID": "your-project-id",
"STYTCH_SECRET": "your-secret"
}
}
}
}