MCP Catalogs
Home

mcp-google-tasks vs everything

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

mcp-google-tasks
by ktmage
everything
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score2977
Official
Categories
ProductivityDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit13 mo agothis month

mcp-google-tasks · Summary

MCP server for Google Tasks integration, allowing AI assistants to manage tasks through the protocol.

everything · Summary

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

mcp-google-tasks · Use cases

  • AI assistants managing personal task lists
  • Automated task creation based on other AI outputs
  • Productivity tools integrating with Google Tasks

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

mcp-google-tasks · Install

Installation

  1. Clone the repository:
git clone <repository URL>
cd mcp-google-tasks
  1. Install dependencies:
npm install
  1. Configure Google Cloud Project:
  • Enable Tasks API in Google Cloud Console
  • Create OAuth 2.0 credentials for a desktop app
  • Rename credentials file to credentials.json and place in project root
  1. Build and run:
npm run build
node build/index.js

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "google-tasks": {
      "command": "node",
      "args": ["/full/path/to/mcp-google-tasks/build/index.js"]
    }
  }
}

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.