MCP Catalogs
首页

mysql_mcp_server vs sequentialthinking

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

mysql_mcp_server
by designcomputer
sequentialthinking
by modelcontextprotocol
Stars★ 1,251★ 85,748
30天用量
综合分5275
官方
分类
数据库开发者工具安全
AI / LLM 工具开发者工具效率工具
实现语言PythonTypeScript
最近提交12 个月前本月

mysql_mcp_server · 概述

MCP 服务器,提供结构化 API 安全交互 MySQL 数据库。

sequentialthinking · 概述

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

mysql_mcp_server · 使用场景

  • AI 模型通过安全 SQL 查询进行数据分析
  • AI 助手的数据库探索和模式检查
  • MySQL 数据与 AI 驱动应用程序的集成

sequentialthinking · 使用场景

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

mysql_mcp_server · 安装

安装

手动安装
pip install mysql-mcp-server
通过 Smithery 安装

通过 [Smithery](https://smithery.ai/server/mysql-mcp-server) 为 Claude Desktop 自动安装 MySQL MCP Server:

npx -y @smithery/cli install mysql-mcp-server --client claude
配置

设置以下环境变量:

MYSQL_HOST=localhost     # 数据库主机
MYSQL_PORT=3306         # 可选:数据库端口(未指定时默认为 3306)
MYSQL_USER=your_username
MYSQL_PASSWORD=your_password
MYSQL_DATABASE=your_database
与 Claude Desktop 配合使用

将此添加到您的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "mysql": {
      "command": "uv",
      "args": [
        "--directory",
        "path/to/mysql_mcp_server",
        "run",
        "mysql_mcp_server"
      ],
      "env": {
        "MYSQL_HOST": "localhost",
        "MYSQL_PORT": "3306",
        "MYSQL_USER": "your_username",
        "MYSQL_PASSWORD": "your_password",
        "MYSQL_DATABASE": "your_database"
      }
    }
  }
}

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 公开数据自动生成,定期更新。