youtube-mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
youtube-mcp-server by 0GiS0 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 17 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 40 | 84 |
| Official | — | — |
| Categories | MediaDeveloper ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
youtube-mcp-server · Summary
A practical MCP server that integrates YouTube API with both stdio and SSE transport methods.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
youtube-mcp-server · Use cases
- Retrieving YouTube channel information and statistics through AI assistants
- Building MCP servers with multiple transport methods (stdio and SSE)
- Learning MCP implementation patterns with practical examples
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
youtube-mcp-server · Install
Installation
Option 1: MCP Server with stdio transport
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-stdio
npm install
cp .env-sample .env
# Edit .env with your YouTube API key
npm run buildOption 2: MCP Server with SSE transport
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-remote
npm install
cp .env-sample .env
# Edit .env with your YouTube API key
npm run build && npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"youtube-stdio": {
"command": "node",
"args": ["/path/to/mcp-stdio/build/index.js"]
},
"youtube-remote": {
"url": "http://localhost:3000"
}
}
}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"]
}
}
}