ls-mcp vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
ls-mcp by lirantal | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具可观测性安全 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
ls-mcp · 概述
用于发现和分析各种AI应用中MCP服务器配置的CLI工具。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
ls-mcp · 使用场景
- 审核开发环境中的MCP服务器配置
- 为资产清单目的发现系统中运行的所有MCP服务器
- 检查MCP配置和凭据暴露中的潜在安全问题
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
ls-mcp · 安装
通过npm安装:
npm install -g ls-mcp使用方法:
npx ls-mcp
# 分析特定文件
npx ls-mcp --files ./mcp-config.json
# 输出JSON格式
npx ls-mcp --jsonsequentialthinking · 安装
安装
**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"
]
}
}
}