fullstack-langgraph-nextjs-agent vs mcp-server-chart
并排对比,帮你在这两个 MCP server 之间做选择。
fullstack-langgraph-nextjs-agent by agentailor | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 106 | ★ 4,068 |
| 30天用量 | — | 10,239 |
| 综合分 | 47 | 84 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
fullstack-langgraph-nextjs-agent · 概述
具备 MCP 集成的生产级 Next.js 模板,用于 AI 动态工具加载。
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
fullstack-langgraph-nextjs-agent · 使用场景
- 构建具有工具调用能力且可用于生产的 AI 代理
- 创建需要人工审批 AI 工具使用的应用程序
- 开发具有持久对话记忆和多模态支持的系统
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
fullstack-langgraph-nextjs-agent · 安装
安装步骤
- **克隆并安装**
git clone https://github.com/IBJunior/fullstack-langgraph-nextjs-agent.git
cd fullstack-langgraph-nextjs-agent
pnpm install- **环境设置**
cp .env.example .env.local编辑 .env.local 文件配置:
# 数据库
DATABASE_URL="postgresql://user:password@localhost:5434/agent_db"
# AI 模型
OPENAI_API_KEY="sk-..."
GOOGLE_API_KEY="..."
ANTHROPIC_API_KEY="sk-ant-..."- **启动服务**
docker compose up -d # 启动 PostgreSQL 和 MinIO- **数据库设置**
pnpm prisma:generate
pnpm prisma:migrate- **运行开发服务器**
pnpm devClaude Desktop 集成
要与 Claude Desktop 一起使用,请添加到 claude_desktop_config.json:
{"mcpServers": {"langgraph-agent": {"command": "node", "args": ["path/to/your/project/dist/server.js"]}}}mcp-server-chart · 安装
安装
全局安装:
npm install -g @antv/mcp-server-chart对于桌面应用(如 Claude Desktop、VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}Windows 系统:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}