# ๐ GoogleUnlimited Google Workspace Platform
[](https://github.com/dipseth/google_workspace_fastmcp2/tree/main/documentation)
[](https://pypi.org/project/google-workspace-unlimited/)
[](https://github.com/dipseth/google_workspace_fastmcp2/blob/main/LICENSE)
**GoogleUnlimited** is a comprehensive MCP framework that provides seamless Google Workspace integration through an advanced middleware architecture. It enables AI assistants and MCP clients to interact with Gmail, Google Drive, Docs, Sheets, Slides, Calendar, Forms, Chat, and Photos services using a unified, secure API.
## ๐ Table of Contents
- [Quick Installation Instructions](#-quick-installation-instructions)
- [Service Capabilities](#-service-capabilities)
- [Middleware Architecture](#-middleware-architecture)
- [Template System](#-template-system)
- [Resource Discovery](#-resource-discovery)
- [Testing Framework](#-testing-framework)
- [Security & Authentication](#-security--authentication)
## โก Quick Installation Instructions
### What is GoogleUnlimited?
GoogleUnlimited provides AI assistants with access to Google Workspace services through the Model Context Protocol (MCP). It supports **90+ tools** across **9 Google services**, enabling seamless integration between AI workflows and Google Workspace applications with revolutionary performance improvements.

### ๐ ๏ธ Installation Methods
#### Method 1: Quick Install via uvx (Recommended)
The fastest way to get started - install directly from PyPI:
```json
{
"mcpServers": {
"google-workspace-unlimited": {
"command": "uvx",
"args": ["google-workspace-unlimited"],
"disabled": false,
"timeout": 300
}
}
}
```
> โก **That's it!** The server runs in stdio mode by default, perfect for MCP clients like Claude Desktop, Cursor, Roo, etc.
#### Method 2: Clone and Development Setup
For development or customization:
1. **Clone and setup:**
```bash
git clone https://github.com/dipseth/google_workspace_fastmcp2.git
cd google_workspace_fastmcp2
uv sync
```
2. **Configure Google OAuth:**
a. Go to [Google Cloud Console](https://console.cloud.google.com/)
b. Create a new project (or select existing)
c. Enable the APIs you need: Gmail, Drive, Docs, Sheets, Slides, Calendar, Forms, Chat, Photos
d. Go to **APIs & Services > Credentials > Create Credentials > OAuth client ID**
e. Select **Web application** as the application type
f. Under **Authorized redirect URIs**, add:
```
http://localhost:8002/oauth2callback
```
g. Click **Create** and copy your **Client ID** and **Client Secret**
3. **Setup environment:**
```bash
cp .env.example .env
```
Edit `.env` with your credentials:
```bash
# Your OAuth credentials from Google Cloud Console
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
# Must match EXACTLY what you set in Google Cloud Console
OAUTH_REDIRECT_URI=http://localhost:8002/oauth2callback
```
> **Alternative:** Instead of `GOOGLE_CLIENT_ID` and `GOOGLE_CLIENT_SECRET`, you can download the JSON file from Google and set `GOOGLE_CLIENT_SECRETS_FILE=credentials.json`
4. **Start the server:**
```bash
uv run python server.py
```
> ๐ **Configuration Resources:**
> - ๐ง **[Complete Configuration Guide](documentation/config/CONFIGURATION_GUIDE.md)** - Comprehensive environment variables and settings reference
> - ๐ค **[Claude.ai Integration Guide](documentation/config/claude_ai_integration_guide.md)** - Setup for Claude.ai remote MCP server usage
> - ๐ **[HTTPS Setup Guide](documentation/config/https_setup_guide.md)** - SSL certificate configuration for secure connections
> - โ๏ธ **[MCP JSON Configuration Guide](documentation/config/mcp_config_fastmcp.md)** - Standard MCP configuration for any compatible client
### ๐ Environment Variables Reference
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| `GOOGLE_CLIENT_ID` | Yes* | - | OAuth 2.0 client ID from Google Cloud Console |
| `GOOGLE_CLIENT_SECRET` | Yes* | - | OAuth 2.0 client secret from Google Cloud Console |
| `GOOGLE_CLIENT_SECRETS_FILE` | Yes* | - | Alternative: path to OAuth JSON file |
| `OAUTH_REDIRECT_URI` | Yes | `http://localhost:8002/oauth2callback` | Must match Google Console exactly |
| `SERVER_HOST` | No | `localhost` | Server bind address |
| `SERVER_PORT` | No | `8002` | Server port |
| `ENABLE_HTTPS` | No | `false` | Enable HTTPS/SSL |
| `SSL_CERT_FILE` | If HTTPS | - | Path to SSL certificate |
| `SSL_KEY_FILE` | If HTTPS | - | Path to SSL private key |
| `CREDENTIAL_STORAGE_MODE` | No | `FILE_ENCRYPTED` | `FILE_ENCRYPTED`, `FILE_PLAINTEXT`, `MEMORY_ONLY` |
| `CREDENTIALS_DIR` | No | `./credentials` | Directory for stored credentials |
| `LOG_LEVEL` | No | `INFO` | `DEBUG`, `INFO`, `WARNING`, `ERROR` |
| `SESSION_TIMEOUT_MINUTES` | No | `60` | Session idle timeout |
| `GMAIL_ALLOW_LIST` | No | - | Comma-separated allowed email addresses |
| `QDRANT_URL` | No | `http://localhost:6333` | Qdrant vector database URL |
| `QDRANT_KEY` | No | `NONE` | Qdrant API key (use `NONE` for no auth) |
| `FASTMCP_CLOUD` | No | `false` | Enable cloud deployment mode |
*Either `GOOGLE_CLIENT_ID` + `GOOGLE_CLIENT_SECRET` OR `GOOGLE_CLIENT_SECRETS_FILE` is required.
## ๐ Client Connections
GoogleUnlimited supports multiple connection methods. Here are the two most popular ways to get started:
### ๐ฏ Quick Setup Options
**Option 1: Cursor IDE** (STDIO - Community Verified โ
):
```json
{
"mcpServers": {
"google-workspace": {
"command": "uv",
"args": [
"--directory", "/path/to/google_workspace_fastmcp2",
"run", "python", "server.py"
],
"env": {
"GOOGLE_CLIENT_SECRETS_FILE": "/path/to/client_secrets.json",
"MCP_TRANSPORT": "stdio"
}
}
}
}
```
**Option 2: HTTP Streamable** (VS Code Roo, Claude Desktop, etc.):
```bash
# 1. Start server in HTTP mode
uv run python server.py --transport http --port 8002
# 2. Configure your client with:
```
```json
{
"google-workspace": {
"type": "streamable-http",
"url": "https://localhost:8002/mcp",
"disabled": false
}
}
```
### ๐ Complete Connection Guide
For detailed setup instructions, troubleshooting, and configurations for all supported clients including:
- Claude Code CLI (HTTP & STDIO)
- Claude Desktop
- VS Code/GitHub Copilot
- Claude.ai with Cloudflare Tunnel
- And more...
> ๐ **[Complete Client Connection Guide](documentation/config/MCP_CLIENT_CONNECTIONS.md)** - Comprehensive setup instructions, troubleshooting, and advanced configurations for all supported AI clients and development environments
## ๐ฏ Service Capabilities
GoogleUnlimited supports **9 Google Workspace services** with **90+ specialized tools**:
| Service | Icon | Tools | Key Features | Documentation |
|---------|------|-------|--------------|---------------|
| **Gmail** | ๐ง | 14 | Send, reply, labels, filters, search, allowlist | [`api-reference/gmail/`](documentation/api-reference/gmail/) |
| **Drive** | ๐ | 9 | Upload, download, sharing, Office docs, file management | [`api-reference/drive/`](documentation/api-reference/drive/) |
| **Docs** | ๐ | 4 | Create, edit, format, batch operations | [`api-reference/docs/`](documentation/api-reference/docs/) |
| **Sheets** | ๐ | 7 | Read, write, formulas, formatting | [`api-reference/sheets/`](documentation/api-reference/sheets/) |
| **Slides** | ๐ฏ | 5 | Presentations, templates, export | [`api-reference/slides/`](documentation/api-reference/slides/) |
| **Calendar** | ๐
| 9 | Events, scheduling, attendees, timezones | [`api-reference/calendar/`](documentation/api-reference/calendar/) |
| **Forms** | ๐ | 8 | Creation, responses, validation, publishing | [`api-reference/forms/`](documentation/api-reference/forms/) |
| **Chat** | ๐ฌ | 24 | Messaging, cards, spaces, webhooks, unified cards | [`api-reference/chat/`](documentation/api-reference/chat/) |
| **Photos** | ๐ท | 12 | Albums, upload, search, metadata, smart search | [`api-reference/photos/`](documentation/api-reference/photos/) |
> ๐ **API Documentation Resources:**
> - ๐ **[Complete API Reference](documentation/api-reference/)** - Comprehensive documentation for all 90+ tools across 9 services
> - ๐ง **[Gmail API Guide](documentation/api-reference/gmail/)** - Email management, labels, filters, and search operations
> - ๐ **[Drive API Guide](documentation/api-reference/drive/)** - File operations, sharing, and Office document handling
> - ๐ **[Sheets API Guide](documentation/api-reference/sheets/)** - Spreadsheet data manipulation and formatting
> - ๐
**[Calendar API Guide](documentation/api-reference/calendar/)** - Event scheduling and timezone management
## ๐ง Middleware Architecture
GoogleUnlimited uses a middleware architecture that provides seamless service integration, intelligent resource management, and powerful templating capabilities.

### ๐ง Core Middleware Components
- **๐ท๏ธ TagBasedResourceMiddleware**: Intelligent resource discovery using URI patterns (`service://gmail/messages`, `user://current/email`)
- **๐ง QdrantUnifiedMiddleware**: AI-powered semantic search across all tool responses with vector embeddings
- **๐จ TemplateMiddleware**: Advanced Jinja2 template system for beautiful, structured output formatting
### โจ Architecture Benefits
- **๐ Unified Resource Access**: URI-based access to service data without API calls
- **๐ง Semantic Intelligence**: Natural language search across all stored responses
- **๐จ Visual Excellence**: Consistent, beautiful output formatting for optimal AI consumption
- **๐ฐ Token Efficiency**: Template macros reduce token usage by 60-80% through structured data rendering
- **โก Performance**: 30x faster than traditional approaches through intelligent caching
> ๐ **Middleware Documentation Resources:**
> - ๐ **[Middleware Architecture Guide](documentation/middleware/)** - Complete middleware system documentation and implementation details
> - ๐ท๏ธ **[TagBasedResourceMiddleware](documentation/middleware/)** - URI pattern resource discovery and management
> - ๐ง **[QdrantUnifiedMiddleware](documentation/middleware/)** - AI-powered semantic search and vector embeddings
> - ๐จ **[TemplateMiddleware](documentation/middleware/)** - Advanced Jinja2 template system for output formatting
## ๐จ Template System
GoogleUnlimited features powerful **Jinja2 template macros** that transform raw Google Workspace data into visually stunning, AI-optimized formats.
### ๐ฏ Available Template Macros
| Template File | Macro | Purpose | Key Features |
|---------------|-------|---------|--------------|
| **`email_card.j2`** | `render_gmail_labels_chips()` | Gmail label visualization | Interactive chips, unread counts, direct Gmail links |
| **`calendar_dashboard.j2`** | `render_calendar_dashboard()` | Calendar & events dashboard | Primary/shared calendars, upcoming events, dark theme |
| **`dynamic_macro.j2`** | `render_calendar_events_dashboard()` | Calendar events dashboard | Event cards, time/location details, clickable links, dark theme |
| **`document_templates.j2`** | `generate_report_doc()` | Professional reports | Metrics, tables, charts, company branding |
| **`colorfuL_email.j2`** | `render_beautiful_email3()` | Rich HTML emails | Multiple signatures, gradients, responsive design |
### ๐ก Template Macro Examples
**Gmail Labels Visualization** - Transform label lists into beautiful interactive chips:
```jinja2
{{ render_gmail_labels_chips( service://gmail/labels , 'Label summary for: ' + user://current/email ) }}
```
**Calendar Dashboard** - Create comprehensive calendar overviews:
```jinja2
{{ render_calendar_dashboard( service://calendar/calendars, service://calendar/events, 'My Calendar Overview' ) }}
```
**Calendar Events Dashboard** - Transform calendar events into beautiful, interactive event cards:
```jinja2
{{ render_calendar_events_dashboard( service://calendar/events , 'Upcoming Events for: ' + user://current/email.email ) }}
```

This macro creates a stunning dark-themed dashboard featuring:
- ๐
**Interactive Event Cards**: Each event is rendered as a clickable card that opens in Google Calendar
- ๐ **Smart Time Display**: Automatically formats all-day events vs. timed events with timezone support
- ๐ **Location Integration**: Displays meeting locations and virtual meeting links
- ๐ฅ **Attendee Information**: Shows attendee counts and participant details
- โ
**Status Indicators**: Color-coded status (confirmed, tentative, cancelled) with visual feedback
- ๐ฑ **Responsive Design**: Mobile-optimized layout with touch-friendly interactions
- ๐จ **Dark Theme Styling**: Professional appearance with gradient backgrounds and hover effects
**Professional Documents** - Generate reports with metrics and charts:
```jinja2
{{ generate_report_doc(
report_title='Q4 Performance Report',
metrics=[{'value': '$1.2M', 'label': 'Revenue', 'change': 15}],
company_name='Your Company'
) }}
```
### ๐ Macro Discovery & Dynamic Creation
Explore all available macros using the template resource system:
```python
# Access the template://macros resource to discover all available macros
macros = await access_resource("template://macros")
# Returns comprehensive macro information with usage examples
# Access specific macro details
macro_details = await access_resource("template://macros/render_gmail_labels_chips")
```
### ๐ฏ Dynamic Macro Creation
Create custom macros at runtime using the `create_template_macro` tool:
```python
# Create a new macro dynamically
await create_template_macro(
macro_name="render_task_status_badge",
macro_content='''
{% macro render_task_status_badge(status, size='small') %}
{% if status == 'completed' %}
<span class="status-badge status-completed {{ size }}">โ
Complete</span>
{% elif status == 'in_progress' %}
<span class="status-badge status-in-progress {{ size }}">๐ In Progress</span>
{% else %}
<span class="status-badge status-pending {{ size }}">โณ {{ status|title }}</span>
{% endif %}
{% endmacro %}
''',
description="Renders visual status badges for task states with appropriate icons",
usage_example="{{ render_task_status_badge('completed', 'large') }}",
persist_to_file=True
)
# Immediately use the newly created macro
await send_gmail_message(
html_body="Task Status: {{ render_task_status_badge('completed', 'large') }}"
)
```
**Key Features:**
- โก **Immediate Availability**: Macros are instantly available after creation
- ๐ฏ **Resource Integration**: Automatically available via `template://macros/macro_name`
- ๐พ **Optional Persistence**: Save macros to disk for permanent availability
- ๐ **Template Processing**: Full Jinja2 syntax validation and error handling
### ๐ Real-World Usage
Templates can be directly used in tool calls for beautiful, structured output:
```python
# Send a beautiful email with calendar dashboard
await send_gmail_message(
to="manager@company.com",
subject="Weekly Schedule Update",
html_body="{{ render_calendar_events_dashboard( service://calendar/events, 'My upcoming events') }}",
content_type="mixed"
)
# Generate and send a professional report
await create_doc(
title="Q4 Performance Report",
content="{{ generate_report_doc( report_title='Quarterly Results', company_name='GoogleUnlimited' ) }}"
)
```
> ๐ **Template System Resources:**
> - ๐จ **[Template Directory](middleware/templates/)** - Complete collection of Jinja2 templates and macros
> - ๐ **[Beautiful Email Templates](middleware/templates/beautiful_email.j2)** - Rich HTML email styling and themes
> - ๐ท๏ธ **[Gmail Label Cards](middleware/templates/email_card.j2)** - Interactive label visualization with chips
> - ๐
**[Calendar Dashboard](middleware/templates/calendar_dashboard.j2)** - Event timeline and scheduling views
> - ๐ **[Document Templates](middleware/templates/document_templates.j2)** - Structured document formatting
## ๐๏ธ Resource Discovery
GoogleUnlimited provides a powerful **MCP resource system** that enables lightning-fast data access without API calls through intelligent URI patterns.

### ๐ฏ Resource URI Patterns
| Pattern | Purpose | Example | Returns |
|---------|---------|---------|---------|
| `user://profile/{email}` | User authentication status | `user://profile/john@gmail.com` | Profile + auth state |
| `service://{service}/lists` | Available service lists | `service://gmail/lists` | [filters, labels] |
| `service://{service}/{list_type}` | All items in list | `service://gmail/labels` | All Gmail labels |
| `service://{service}/{list_type}/{id}` | Specific item details | `service://gmail/labels/INBOX` | INBOX label details |
| `recent://{service}` | Recent items | `recent://drive` | Recent Drive files |
| `qdrant://search/{query}` | Semantic search | `qdrant://search/gmail errors` | Relevant responses |
### ๐๏ธ Key Resource Files
- **[`resources/user_resources.py`](resources/user_resources.py)**: Authentication, profiles, session management (1,812 lines)
- **[`resources/service_list_resources.py`](resources/service_list_resources.py)**: Service discovery through TagBasedResourceMiddleware (446 lines)
- **[`middleware/qdrant_core/resources.py`](middleware/qdrant_core/resources.py)**: AI-powered search and analytics (319 lines)
### โก Lightning-Fast Access
```python
# Instant Gmail labels (no API call needed)
labels = await access_resource("service://gmail/labels")
# Current user info from session
user = await access_resource("user://current/email")
# Semantic search across all tool responses
results = await access_resource("qdrant://search/gmail errors today")
# Recent calendar events
events = await access_resource("recent://calendar")
```
> ๐ **Resource System Documentation:**
> - ๐๏ธ **[User Resources](resources/user_resources.py)** - Authentication, profiles, and session management (1,812 lines)
> - ๐ท๏ธ **[Service List Resources](resources/service_list_resources.py)** - Service discovery through TagBasedResourceMiddleware (446 lines)
> - ๐ง **[Qdrant Core Resources](middleware/qdrant_core/resources.py)** - AI-powered search and analytics (319 lines)
> - ๐ **[Resource Patterns Guide](documentation/middleware/)** - Complete URI pattern reference and usage examples
## ๐งช Testing Framework
GoogleUnlimited includes comprehensive testing with **client tests** that validate MCP usage exactly as an LLM would experience it, plus additional testing suites. **559 tests passing with 100% pass rate**.
### ๐ฏ Client Testing Focus

The **client tests** are the most important component - they provide deterministic testing of MCP operations using real resource integration and standardized patterns across all **90+ tools** and **9 Google services**. These tests validate both explicit email authentication and middleware injection patterns.
### ๐ Quick Test Commands
```bash
# ๐งช Run all client tests (primary test suite)
uv run pytest tests/client/ -v
# ๐ง Test specific service
uv run pytest tests/client/ -k "gmail" -v
# ๐ Authentication required tests
uv run pytest tests/client/ -m "auth_required" -v
```
### ๐ฌ Real Resource ID Integration
The testing framework fetches **real IDs** from service resources for realistic testing:
```python
# Available fixtures for real resource testing
real_gmail_message_id # From service://gmail/messages
real_drive_document_id # From service://drive/items
real_calendar_event_id # From service://calendar/events
real_photos_album_id # From service://photos/albums
real_forms_form_id # From service://forms/forms
real_chat_space_id # From service://chat/spaces
```
### ๐ CI/CD Pipeline
Automated testing and publishing via GitHub Actions:
- **CI Workflow**: Runs on every PR and push to main
- Python 3.11 & 3.12 matrix testing
- Linting with `ruff` and formatting with `black`
- Full test suite execution
- **TestPyPI Publishing**: Automated package publishing for testing
> ๐ **Testing Resources:**
> - ๐ **[Client Testing Framework Guide](tests/client/TESTING_FRAMEWORK.md)** - Complete client testing documentation and patterns
> - ๐งช **[Client Tests Directory](tests/client/)** - Real resource integration tests for deterministic MCP validation
> - ๐ค **[MCP Client Integration](https://gofastmcp.com/clients/client)** - Learn more about MCP client patterns and usage
> - ๐ **[Authentication Patterns](tests/client/)** - Email vs middleware injection validation testing
## ๐ Security & Authentication
GoogleUnlimited implements **enterprise-grade security** with OAuth 2.1 + PKCE, advanced session management, and comprehensive audit capabilities.

### ๐ก๏ธ Authentication Flows
1. **๐ MCP Inspector OAuth**: MCP Spec compliant with Dynamic Client Registration
2. **๐ฅ๏ธ Direct Server OAuth**: Web-based authentication for direct access
3. **๐ง Development JWT**: Testing mode with generated tokens
4. **๐ Enhanced File Credentials**: Persistent storage with encryption options
5. **๐ Custom OAuth Clients**: Bring your own OAuth credentials with automatic fallback
### โจ Security Features
- **๐ OAuth 2.1 + PKCE**: Modern authentication with proof-of-key exchange (supports public clients)
- **๐ Session Isolation**: Multi-tenant support preventing data leaks
- **๐ท๏ธ 27+ API Scopes**: Granular permission management across all services
- **๐ Audit Logging**: Complete security event tracking
- **๐ AES-256 Encryption**: Machine-specific keys for credential storage
- **๐ Three-Tier Fallback**: Robust credential persistence across server restarts (State Map โ UnifiedSession โ Context Storage)
### โ๏ธ Security Configuration
```env
# ๐ Security settings in .env
CREDENTIAL_STORAGE_MODE=FILE_ENCRYPTED
SESSION_SECRET_KEY=your-secret-key
SESSION_TIMEOUT_MINUTES=30
ENABLE_AUDIT_LOGGING=true
GMAIL_ALLOW_LIST=trusted@example.com
```
> ๐ **Security Documentation Resources:**
> - ๐ก๏ธ **[Unified OAuth Architecture](documentation/security/unified_oauth_architecture_design.md)** - Complete security architecture and authentication design
> - ๐ **[OAuth 2.1 + PKCE Implementation](documentation/security/)** - Modern authentication with proof-of-key exchange
> - ๐ **[Session Management Guide](documentation/security/)** - Multi-tenant support and session isolation
> - ๐ **[Encryption & Storage](documentation/security/)** - AES-256 credential encryption and machine-specific keys
> - ๐ **[Audit Logging System](documentation/security/)** - Complete security event tracking and monitoring
---
<div align="center">
**๐ Ready to revolutionize your Google Workspace integration?**
[๐ Documentation](documentation/) โข [๐ง Configuration](documentation/config/) โข [๐ฏ API Reference](documentation/api-reference/) โข [๐งช Testing](tests/client/)
</div>