MCP Catalogs
首页

firebase-mcp vs sequentialthinking

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

firebase-mcp
by gannonh
sequentialthinking
by modelcontextprotocol
Stars★ 243★ 85,748
30天用量
综合分4675
官方
分类
数据库云存储开发者工具
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交7 个月前本月

firebase-mcp · 概述

Firebase MCP 服务器为 AI 助手提供 Firestore、Storage 和身份验证工具。

sequentialthinking · 概述

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

firebase-mcp · 使用场景

  • AI 助手通过对话直接管理 Firestore 数据库
  • 通过 AI 命令自动上传和管理 Firebase Storage 中的文件
  • 使用 Firebase Auth 在 AI 应用中实现用户身份验证和管理

sequentialthinking · 使用场景

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

firebase-mcp · 安装

安装

  1. 通过将 MCP 服务器添加到您的 MCP 配置文件来安装:

对于 Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "firebase-mcp": {
    "command": "npx",
    "args": [
      "-y",
      "@gannonh/firebase-mcp"
    ],
    "env": {
      "SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/serviceAccountKey.json",
      "FIREBASE_STORAGE_BUCKET": "your-project-id.firebasestorage.app"
    }
  }
}
  1. 配置您的 Firebase 项目:

- 转到 Firebase 控制台 → 项目设置 → 服务账号 - 生成并保存私钥 - 设置 SERVICE_ACCOUNT_KEY_PATH 环境变量

  1. 重启您的 MCP 客户端以加载新的服务器

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