MCP Catalogs
Home

one-mcp vs sequentialthinking

Side-by-side comparison to help you pick between these two MCP servers.

one-mcp
by burugo
sequentialthinking
by modelcontextprotocol
Stars★ 390★ 85,748
30d uses
Score5075
Official
Categories
Developer ToolsOps & InfraOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageGoTypeScript
Last committhis monththis month

one-mcp · Summary

One MCP is a centralized proxy platform for managing multiple MCP services with a web interface, analytics, and service grouping capabilities.

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

one-mcp · Use cases

  • Managing multiple MCP services in a centralized dashboard instead of configuring each one individually
  • Creating custom Claude Skills by grouping multiple MCP services into a single endpoint
  • Monitoring usage analytics and performance metrics of MCP services across an organization

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

one-mcp · Install

Homebrew Installation (macOS & Linux)

# Add tap
brew tap burugo/tap

# Install one-mcp
brew install one-mcp

# Start as background service
brew services start one-mcp

Docker Installation

docker run --name one-mcp -d \
  --restart always \
  -p 3000:3000 \
  -v $(pwd)/data:/data \
  buru2020/one-mcp:latest

Manual Installation

git clone https://github.com/burugo/one-mcp.git
cd one-mcp
cp .env_example .env
bash ./run.sh

**Default Login**: Username root, Password 123456

sequentialthinking · Install

Installation

**Claude Desktop**: Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: Use one of the installation buttons or manually configure with:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.