MCP Catalogs
Home

everything vs MCPApp

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

everything
by modelcontextprotocol
MCPApp
by tanaikech
Stars★ 85,748★ 47
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptJavaScript
Last committhis monththis month

everything · Summary

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

MCPApp · Summary

Google Apps Script-based MCP server implementation for AI clients with tools and prompts support.

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

MCPApp · Use cases

  • Building AI assistants that interact with Google services via GAS
  • Creating MCP clients that leverage Google Apps Script functionality
  • Developing standardized interfaces between AI systems and Google Workspace

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

MCPApp · Install

Installation

  1. Clone or download the repository
  2. Deploy as a Google Apps Script web app
  3. Set up appropriate permissions for Google services
  4. Configure the access key in the initialization

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcpapp": {
      "command": "curl",
      "args": ["-L", "YOUR_MCP_SERVER_URL"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.