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 | — | — |
| Score | 29 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this 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
- Clone the repository:
git clone <repository URL>
cd mcp-google-tasks- Install dependencies:
npm install- 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.jsonand place in project root
- Build and run:
npm run build
node build/index.jsClaude 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