MCP Catalogs
Home

everything vs stackql

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

everything
by modelcontextprotocol
stackql
by stackql
Stars★ 85,748★ 841
30d uses
Score7752
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsOps & InfraCloud Storage
LanguageTypeScriptGo
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

stackql · Summary

StackQL is a Go-based SQL framework for querying and managing cloud resources and APIs via MCP protocol.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

stackql · Use cases

  • Infrastructure as Code management using SQL queries
  • Cloud resource provisioning and automation
  • Cross-cloud service querying and data aggregation

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

stackql · Install

Installation

StackQL can be installed on multiple platforms:

**macOS:**

brew install stackql

**Windows:**

choco install stackql

**Linux:**

curl -L https://bit.ly/stackql-zip -O && unzip stackql-zip

**Docker:**

docker pull stackql/stackql

**Claude Desktop Integration:** In Claude Desktop's config.json:

{
  "mcpServers": {
    "stackql": {
      "command": "stackql",
      "args": ["srv"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.