sequentialthinking vs motoko-mcp-example
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | motoko-mcp-example by prometheus-protocol | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30天用量 | — | — |
| 综合分 | 75 | 31 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具blockchain其它 |
| 实现语言 | TypeScript | Motoko |
| 最近提交 | 本月 | 9 个月前 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
motoko-mcp-example · 概述
用于在ICP Ninja上一键部署Prometheus Protocol MCP服务器的Motoko模板。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
motoko-mcp-example · 使用场景
- 为Internet Computer区块链构建自定义MCP工具
- 使用OAuth认证创建货币化的AI服务
- 在基于浏览器的IDE中开发和测试MCP服务器
sequentialthinking · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}motoko-mcp-example · 安装
快速部署(无需本地设置)
- 访问ICP Ninja部署链接:https://icp.ninja/i?s=wOrZM
- 点击**
运行**按钮进行临时部署(45分钟)或**发布**按钮进行永久部署 - 从部署输出中复制canister ID
- 使用以下URL格式通过MCP Inspector测试您的服务器:
https://[YOUR_CANISTER_ID].icp0.io/mcp
本地开发设置
- 安装先决条件:
- DFX(Canister SDK) - Node.js(v18.0+) - MOPS(Motoko包管理器)
- 克隆仓库
- 本地部署:
dfx deploy或npm run deploy
Claude Desktop集成
添加到您的Claude Desktop config.json中:
{
"mcpServers": {
"motoko-mcp": {
"command": "dfx",
"args": ["start", "--host", "127.0.0.1", "--port", "8000"]
}
}
}