fullstack-langgraph-nextjs-agent vs ultimate_mcp_server
并排对比,帮你在这两个 MCP server 之间做选择。
fullstack-langgraph-nextjs-agent by agentailor | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 106 | ★ 149 |
| 30天用量 | — | — |
| 综合分 | 47 | 85 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具浏览器自动化本地文件系统 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 1 个月前 | 2 个月前 |
fullstack-langgraph-nextjs-agent · 概述
具备 MCP 集成的生产级 Next.js 模板,用于 AI 动态工具加载。
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
fullstack-langgraph-nextjs-agent · 使用场景
- 构建具有工具调用能力且可用于生产的 AI 代理
- 创建需要人工审批 AI 工具使用的应用程序
- 开发具有持久对话记忆和多模态支持的系统
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
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"]}}}ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_server