MCP Catalogs
Home

skybridge vs everything

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

skybridge
by alpic-ai
everything
by modelcontextprotocol
Stars★ 1,128★ 85,748
30d uses
Score5377
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

skybridge · Summary

Skybridge is a TypeScript framework for building MCP and ChatGPT apps with type safety and React components.

everything · Summary

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

skybridge · Use cases

  • Building AI applications with rich UIs
  • Creating MCP tools with React interfaces
  • Developing cross-platform AI chat experiences

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

skybridge · Install

Installation

Skybridge can be installed via npm:

npm i skybridge
yarn add skybridge
pnpm add skybridge
bun add skybridge
deno add skybridge

To create a new app:

npm create skybridge@latest

For Claude Desktop integration, add to your config.json:

{
  "mcpServers": {
    "skybridge": {
      "command": "npx",
      "args": ["skybridge", "server"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.