mcp-shodan vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-shodan by BurtTheCoder | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 127 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 75 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具搜索 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
mcp-shodan · 概述
MCP 服务器,通过 Shodan API 提供网络侦察、DNS 查找和漏洞情报功能。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
mcp-shodan · 使用场景
- 安全研究人员分析联网设备以发现潜在漏洞
- DevOps 团队在系统部署前进行 IP 地址侦察
- 合规人员检查网络基础设施中的已知漏洞
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
mcp-shodan · 安装
安装
Claude Desktop
在您的 Claude Desktop 配置文件中添加:
{
"mcpServers": {
"shodan": {
"command": "mcp-shodan",
"env": {
"SHODAN_API_KEY": "您的-shodan-api-密钥"
}
}
}
}通过 Claude Code
claude mcp add --transport stdio --env SHODAN_API_KEY=您的-shodan-api-密钥 shodan -- npx -y @burtthecoder/mcp-shodan通过 Codex CLI
codex mcp add shodan --env SHODAN_API_KEY=您的-shodan-api-密钥 -- npx -y @burtthecoder/mcp-shodan通过 Gemini CLI
gemini mcp add -e SHODAN_API_KEY=您的-shodan-api-密钥 shodan npx -y @burtthecoder/mcp-shodan手动安装
npm install -g @burtthecoder/mcp-shodansequentialthinking · 安装
安装
**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"
]
}
}
}