MCP Catalogs
Home

mcp-google-tasks vs filesystem

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

mcp-google-tasks
by ktmage
filesystem
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score2977
Official
Categories
ProductivityDeveloper ToolsOther
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.