Spidergate MCP
MCP gateway bridging Claude Code with Google Calendar, Google Tasks, and GitHub for calendar/task management and GitHub operations via natural language.
README
Spidergate MCP
Spidergate is a centralized Model Context Protocol (MCP) gateway designed to bridge Claude Code and LLM environments with your personal productivity stack—specifically Google Workspace (Calendar & Tasks) and GitHub.
Packaged as a lightweight, containerized Python service powered by FastMCP and uv.
Features
- Google Calendar Integration:
- Dynamic multi-calendar scan (queries primary, family, and shared calendars simultaneously).
- Chronologically sorted event feeds with human-readable calendar tagging.
- Robust event creation and deletion with fuzzy calendar name matching and global fallback lookup.
- Google Tasks Integration:
- Full CRUD operations: List, create, complete, and delete tasks.
- GitHub API Suite:
- Browse, create, and comment on Issues.
- List and open Pull Requests.
- Direct file commit and branch pushes via PyGithub.
- Container-First Architecture:
- Runs in an isolated Docker container with stdio transport.
- Zero pollution of host dependencies.
Project Structure
spidergate-mcp/
├── auth/ # Persistent OAuth tokens & credentials (gitignored)
├── docker/
│ ├── Dockerfile
│ └── docker-compose.yml
├── src/
│ └── spidergate/
│ ├── auth/ # OAuth2 handlers and client factories
│ ├── tools/ # Modular tool definitions (Calendar, Tasks, GitHub, Meta)
│ └── server.py # FastMCP gateway entry point
├── .env.example
├── pyproject.toml
└── README.md
Quickstart
- Prerequisites Docker & Docker Compose
Google Cloud Project with Calendar & Tasks API enabled (OAuth 2.0 Client ID)
GitHub Personal Access Token (classic with repo scope or fine-grained)
- Configuration Clone the repository:
Bash git clone https://github.com/YOUR_USERNAME/spidergate-mcp.git cd spidergate-mcp Setup environment variables:
Bash cp .env.example .env
Edit .env and set your GITHUB_PERSONAL_ACCESS_TOKEN
Place your Google OAuth credentials.json into the auth/ directory:
Bash mkdir -p auth cp /path/to/credentials.json auth/credentials.json Run the one-time OAuth authorization flow:
Bash
Run directly or inside the virtual environment
uv run python -m spidergate.auth.init_oauth
(Follow the terminal link, authorize access, and paste the resulting code to generate auth/token.json).
Running with Docker Build and run the background container:
Bash docker compose -f docker/docker-compose.yml up -d --build Verify that the container is running:
Bash docker ps --filter "name=runtime_spidergate" Connecting to Claude Code Add Spidergate directly to Claude Code via standard I/O:
Bash claude mcp add spidergate -- docker exec -i runtime_spidergate spidergate Inside Claude Code, run /mcp to verify the connection. All 14 tools will register automatically.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.