jetski vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
jetski by hyprmcp | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 209 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 75 |
| 官方 | — | ✓ |
| 分类 | 可观测性安全开发者工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
jetski · 概述
一个无需修改代码的 MCP 分析和认证平台,提供 OAuth2.1、实时日志和客户端引导功能。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
jetski · 使用场景
- 监控和分析不同客户端的 MCP 服务器使用模式
- 无需代码修改即可为 MCP 服务器实现 OAuth2.1 认证
- 生成客户端特定的设置说明以减少入门摩擦
- 使用实时日志和分析调试 MCP 服务器问题
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
jetski · 安装
安装
云服务快速开始
使用完全管理的 HyprMCP 云服务,访问 [https://app.hyprmcp.com](https://app.hyprmcp.com/)。
本地开发
- 克隆仓库:
git clone https://github.com/hyprmcp/jetski.git
cd jetski- 安装依赖:
mise trust
mise install
pnpm i
cp .dex.secret.env.example .dex.secret.env
docker compose up -d- 添加主机文件条目:
echo -e "\n127.0.0.1 host.minikube.internal\n" | sudo tee -a /etc/hosts- 启动平台:
终端 1 - 后端:
mise run serve终端 2 - 前端:
pnpm run start生成演示数据:
mise run generate访问 http://localhost:4200,凭据:admin@example.com / password
Claude Desktop 配置
要在 Claude Desktop 中使用,请在您的 claude_desktop_config.json 中配置以下内容:
{
"mcpServers": {
"hyprmcp": {
"command": "npx",
"args": ["@hyprmcp/mcp-gateway"],
"env": {
"HYPRMCP_SERVER_URL": "https://your-server.com",
"HYPRMCP_CLIENT_ID": "your-client-id"
}
}
}
}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"
]
}
}
}