mcp-hands-on-with-agentic-ai vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-hands-on-with-agentic-ai by manulthanura | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 31 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具education | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 8 个月前 | 本月 |
mcp-hands-on-with-agentic-ai · 概述
包含MCP服务器示例和模板的教育资源库,用于构建智能AI功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-hands-on-with-agentic-ai · 使用场景
- 通过实际示例学习MCP实现
- 为特定AI代理功能构建自定义MCP服务器
- 创建文本分析和文档生成的工具
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-hands-on-with-agentic-ai · 安装
安装
每个示例文件夹都包含自己的README.md文件,其中包含特定的安装说明。通常,过程包括:
- 将仓库克隆到您的计算机
- 导航到特定示例文件夹(例如,
mcp-server-examples/text-assist) - 按照包安装说明进行操作(TypeScript使用npm install,Python使用pip install)
- 使用MCP Inspector在开发模式下运行服务器
- 配置Claude Desktop或Cursor以使用MCP服务器
对于Claude Desktop,通常需要将服务器配置添加到您的claude_desktop_config.json文件中。
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