MCP Catalogs
首页

mcp-koii vs sequentialthinking

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-koii
by benjaminr
sequentialthinking
by modelcontextprotocol
Stars★ 23★ 85,748
30天用量
综合分4375
官方
分类
多媒体开发者工具其它
AI / LLM 工具开发者工具效率工具
实现语言PythonTypeScript
最近提交3 个月前本月

mcp-koii · 概述

MCP 服务器,通过 MIDI 控制 Teenage Engineering EP-133 K.O. II 采样器,支持模式创建和播放。

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

mcp-koii · 使用场景

  • 使用自然语言命令创建鼓模式
  • 通过 AI 助手控制硬件采样器
  • 浏览和触发 EP-133 设备上的不同声音

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

mcp-koii · 安装

前置要求

  • Python 3.8 或更高版本
  • mido (MIDI 处理)
  • mcp (模型上下文协议 SDK)

安装

# 安装所需的包
pip install mido "mcp[cli]"

# 克隆仓库
git clone https://github.com/benjaminr/mcp-koii.git
cd mcp-koii

# 安装 MCP 服务器
mcp install koii_server.py:server -e .

Claude Desktop 配置

将此添加到您的 Claude Desktop config.json 文件:

{
  "mcpServers": {
    "koii": {
      "command": "python",
      "args": ["koii_server.py"]
    }
  }
}

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"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。