fullstack-langgraph-nextjs-agent vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
fullstack-langgraph-nextjs-agent by agentailor | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 106 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
fullstack-langgraph-nextjs-agent · 概述
具备 MCP 集成的生产级 Next.js 模板,用于 AI 动态工具加载。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
fullstack-langgraph-nextjs-agent · 使用场景
- 构建具有工具调用能力且可用于生产的 AI 代理
- 创建需要人工审批 AI 工具使用的应用程序
- 开发具有持久对话记忆和多模态支持的系统
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
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"]}}}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything