Skip to main content

Comprehensive MCP server for Google Workspace integration - 72+ tools across Gmail, Drive, Docs, Sheets, Slides, Calendar, Forms, Chat, and Photos with OAuth 2.1 + PKCE authentication

Project description

๐Ÿš€ GoogleUnlimited Google Workspace Platform

docs pypi 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

What is GoogleUnlimited?

GoogleUnlimited provides AI assistants with access to Google Workspace services through the Model Context Protocol (MCP). It supports 92+ tools across 9 Google services, enabling seamless integration between AI workflows and Google Workspace applications with revolutionary performance improvements.

Architecture Overview

๐Ÿ› ๏ธ Installation Methods

Method 1: Quick Install via uvx (Recommended)

The fastest way to get started - install directly from PyPI:

{
  "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:

    git clone https://github.com/dipseth/google_workspace_fastmcp2.git
    cd google_workspace_fastmcp2
    uv sync
    
  2. Start the server:

    uv run python server.py
    

    The server starts immediately with zero configuration required. OAuth credentials are not needed at startup โ€” authentication is handled lazily when you first interact with a Google service.

  3. Authenticate when ready:

    When you call any Google Workspace tool, the server will prompt you to authenticate via the start_google_auth tool. This opens a browser-based OAuth flow. Once completed, credentials are stored locally and reused across sessions.

    To pre-configure OAuth credentials (optional), create a .env file:

    cp .env.example .env
    

    Then add your Google Cloud Console credentials:

    # Option A: Client ID + Secret
    GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
    GOOGLE_CLIENT_SECRET=your-client-secret
    
    # Option B: Downloaded JSON credentials file
    GOOGLE_CLIENT_SECRETS_FILE=credentials.json
    

    See the Google Cloud Console setup steps for creating OAuth credentials and enabling APIs.

๐Ÿ“š Configuration Resources:

๐Ÿ“‹ Environment Variables Reference

All environment variables are optional โ€” the server starts with sensible defaults and no .env file required. OAuth credentials are only needed when initiating a new authentication flow via start_google_auth.

Google OAuth (needed for first-time authentication):

Variable Default Description
GOOGLE_CLIENT_ID (empty) OAuth 2.0 client ID from Google Cloud Console
GOOGLE_CLIENT_SECRET (empty) OAuth 2.0 client secret
GOOGLE_CLIENT_SECRETS_FILE (empty) Alternative: path to downloaded OAuth JSON file
OAUTH_REDIRECT_URI http://localhost:8002/oauth2callback Must match Google Console redirect URI

Provide either GOOGLE_CLIENT_ID + GOOGLE_CLIENT_SECRET or GOOGLE_CLIENT_SECRETS_FILE before your first OAuth flow. Once authenticated, credentials are stored locally and these variables are no longer needed.

Server:

Variable Default Description
SERVER_HOST localhost Server bind address
SERVER_PORT 8002 Server port
ENABLE_HTTPS false Enable HTTPS/SSL
SSL_CERT_FILE - Path to SSL certificate (required if HTTPS enabled)
SSL_KEY_FILE - Path to SSL private key (required if HTTPS enabled)
LOG_LEVEL INFO DEBUG, INFO, WARNING, ERROR

Security & Sessions:

Variable Default Description
CREDENTIAL_STORAGE_MODE FILE_ENCRYPTED FILE_ENCRYPTED, FILE_PLAINTEXT, MEMORY_ONLY
CREDENTIALS_DIR ./credentials Directory for stored credentials
SESSION_TIMEOUT_MINUTES 60 Session idle timeout
GMAIL_ALLOW_LIST (empty) Comma-separated trusted email addresses

Tool Management:

Variable Default Description
MINIMAL_TOOLS_STARTUP true Start with only 5 protected tools enabled
MINIMAL_STARTUP_SERVICES (empty) Comma-separated services to enable at startup (e.g., drive,gmail)
RESPONSE_LIMIT_MAX_SIZE 500000 Max tool response size in bytes (0 = disabled)
RESPONSE_LIMIT_TOOLS (empty) Comma-separated tool names to limit (empty = all)

Qdrant Vector Database:

Variable Default Description
QDRANT_URL http://localhost:6333 Qdrant vector database URL
QDRANT_KEY NONE Qdrant API key (use NONE for no auth)
QDRANT_AUTO_LAUNCH true Auto-launch Qdrant via Docker if not reachable
QDRANT_DOCKER_IMAGE qdrant/qdrant:latest Docker image for auto-launch
QDRANT_DOCKER_CONTAINER_NAME mcp-qdrant Container name for auto-launched Qdrant

Other:

Variable Default Description
MCP_CHAT_WEBHOOK (empty) Default webhook URL for Google Chat card tools
FASTMCP_CLOUD false Enable cloud deployment mode (auto-switches to MEMORY_WITH_BACKUP storage)

๐Ÿ”— 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 โœ…):

{
  "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 Code, Claude Desktop, etc.):

# Start server in HTTP mode
uv run python server.py --transport http --port 8002

Basic single-connection config:

{
  "google-workspace": {
    "type": "streamable-http",
    "url": "https://localhost:8002/mcp",
    "disabled": false
  }
}

Multi-connection setup โ€” connect the same client (or multiple clients) to the same server with different tool sets using URL query parameters:

{
  "google-email": {
    "type": "streamable-http",
    "url": "https://localhost:8002/mcp?service=gmail"
  },
  "google-chat": {
    "type": "streamable-http",
    "url": "https://localhost:8002/mcp?service=chat"
  },
  "google-productivity": {
    "type": "streamable-http",
    "url": "https://localhost:8002/mcp?service=drive,docs,sheets,slides"
  }
}

Each connection gets its own isolated session with only the requested service tools enabled. You can also pin a session ID with ?uuid= to resume the same session state across reconnects:

{
  "google-workspace": {
    "type": "streamable-http",
    "url": "https://localhost:8002/mcp?uuid=my-workspace&service=gmail,drive,calendar"
  }
}

See URL-Based Service Filtering for the full list of query parameters.

๐Ÿ“š Complete Connection Guide

For detailed setup instructions, troubleshooting, and configurations for all supported clients including:

  • Claude Code CLI (HTTP & STDIO)
  • Claude Desktop
  • VS Code / Roo / GitHub Copilot
  • Claude.ai with Cloudflare Tunnel
  • And more...

๐Ÿ”— Complete Client Connection Guide - 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/
Drive ๐Ÿ“ 9 Upload, download, sharing, Office docs, file management api-reference/drive/
Docs ๐Ÿ“„ 4 Create, edit, format, batch operations api-reference/docs/
Sheets ๐Ÿ“Š 7 Read, write, formulas, formatting api-reference/sheets/
Slides ๐ŸŽฏ 5 Presentations, templates, export api-reference/slides/
Calendar ๐Ÿ“… 9 Events, scheduling, attendees, timezones api-reference/calendar/
Forms ๐Ÿ“ 8 Creation, responses, validation, publishing api-reference/forms/
Chat ๐Ÿ’ฌ 24 Messaging, cards, spaces, webhooks, unified cards api-reference/chat/
Photos ๐Ÿ“ท 12 Albums, upload, search, metadata, smart search api-reference/photos/

๐Ÿ“š API Documentation Resources:

๐Ÿง  Middleware Architecture

GoogleUnlimited uses a middleware architecture that provides seamless service integration, intelligent resource management, and powerful templating capabilities.

Middleware Architecture

๐Ÿ”ง 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:

๐Ÿš€ Minimal Tools Startup

By default, GoogleUnlimited starts with only 5 protected tools enabled for optimal performance and security. This allows clients to enable only the tools they need.

Protected Tools (Always Available):

  • manage_tools - Enable/disable tools globally or per-session
  • manage_tools_by_analytics - Analytics-based tool management
  • health_check - Server health and configuration status
  • start_google_auth - Initiate OAuth authentication
  • check_drive_auth - Verify authentication status

Configuration:

# Default: Start with minimal tools (only 5 protected tools)
MINIMAL_TOOLS_STARTUP=true

# Optional: Pre-enable specific services at startup
MINIMAL_STARTUP_SERVICES=drive,gmail,calendar

# Disable minimal startup (enable all 92+ tools immediately)
MINIMAL_TOOLS_STARTUP=false

Enabling Tools at Runtime:

# Enable all tools globally
manage_tools(action="enable_all")

# Enable specific tools
manage_tools(action="enable", tool_names=["search_drive_files", "list_gmail_labels"])

# List all registered tools (shows enabled/disabled status)
manage_tools(action="list")

๐Ÿ”ง Session-Scoped Tool Management

GoogleUnlimited supports per-session tool enable/disable functionality, allowing different MCP clients to have different tool availability without affecting other connected clients.

Key Features:

  • Session Isolation: Disable tools for one client session without affecting others
  • Non-Invasive: Session-scoped operations never modify the global tool registry
  • Protected Tools: Core management tools (manage_tools, health_check, etc.) always remain available
  • Middleware-Based: Uses SessionToolFilteringMiddleware for protocol-level filtering

Usage Examples:

# Disable tools for this session only (other clients unaffected)
manage_tools(action="disable", tool_names=["send_gmail_message"], scope="session")

# Disable all except specific tools for this session
manage_tools(action="disable_all_except", tool_names=["search_drive_files", "list_events"], scope="session")

# Re-enable all tools for this session
manage_tools(action="enable_all", scope="session")

# Global operations (original behavior, affects all clients)
manage_tools(action="disable", tool_names=["send_gmail_message"], scope="global")

Response Structure:

{
  "success": true,
  "action": "disable_all_except",
  "scope": "session",
  "enabledCount": 94,
  "disabledCount": 0,
  "toolsAffected": ["tool1", "tool2", "..."],
  "sessionState": {
    "sessionId": "f725be09...",
    "sessionAvailable": true,
    "sessionDisabledTools": ["tool1", "tool2"],
    "sessionDisabledCount": 89
  },
  "message": "Kept 5 tools, disabled 89 tools for this session"
}

๐Ÿ–ฅ๏ธ Tool Management Dashboard

GoogleUnlimited includes a built-in Tool Management Dashboard served via the MCP Apps ui:// resource scheme. This provides a visual interface for monitoring and managing tool availability across sessions.

Tool Management Dashboard

Features:

  • Service-grouped tool view โ€” tools organized by Google service (Gmail, Drive, Sheets, etc.) with counts
  • Session state visibility โ€” see which tools are enabled, disabled, or session-disabled at a glance
  • Filter chips โ€” quickly filter by service to focus on relevant tools
  • Live data โ€” powered by DashboardCacheMiddleware which caches list-tool results for instant ui://data-dashboard resource access

The dashboard is automatically wired to all list tools via wire_dashboard_to_list_tools() โ€” no per-tool configuration needed.

๐Ÿ”— URL-Based Service Filtering (HTTP Transport)

When using HTTP/SSE transport, you can filter tools by service directly via URL query parameters - no code required:

# Enable only Gmail tools
http://localhost:8002/mcp?service=gmail

# Enable Gmail + Drive + Calendar
http://localhost:8002/mcp?service=gmail,drive,calendar

# Resume a previous session
http://localhost:8002/mcp?uuid=your-session-id

# Resume session with specific services
http://localhost:8002/mcp?uuid=abc123&service=gmail,drive

# Disable minimal startup (enable all tools)
http://localhost:8002/mcp?minimal=false

Available URL Parameters:

Parameter Example Description
service or services ?service=gmail,drive Comma-separated list of services to enable
uuid ?uuid=abc123 Resume a previous session by ID
minimal ?minimal=false Override minimal startup mode

Available Services: gmail, drive, calendar, docs, sheets, slides, photos, chat, forms, people

๐Ÿ“š Session Tool Management Resources:

๐ŸŽจ 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:

{{ render_gmail_labels_chips( service://gmail/labels , 'Label summary for: ' + user://current/email ) }}

Calendar Dashboard - Create comprehensive calendar overviews:

{{ render_calendar_dashboard( service://calendar/calendars, service://calendar/events, 'My Calendar Overview' ) }}

Calendar Events Dashboard - Transform calendar events into beautiful, interactive event cards:

{{ render_calendar_events_dashboard( service://calendar/events , 'Upcoming Events for: ' + user://current/email.email ) }}

Calendar Events Dashboard Example

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:

{{ 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:

# 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:

# 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') }}"
)

DSL-powered macros โ€” dynamic macros can also embed Google Chat card DSL notation to generate rich, structured cards. The DSL symbols define the card layout while Jinja2 handles dynamic content:

{# workspace_dashboard.j2 โ€” a dynamic macro that outputs a Google Chat card #}
{% macro workspace_dashboard(user_email, stats=None, quick_actions=None) %}
{% set username = user_email.split('@')[0] if user_email else 'User' %}
{% set default_stats = stats or [
    {'label': 'Emails', 'value': '12 unread'},
    {'label': 'Calendar', 'value': '3 meetings today'},
    {'label': 'Tasks', 'value': '5 pending'}
] %}

ยง[ฮดร—3, โ„Š[วตร—4], ยง[ฮดร—2, ษƒ[แตฌร—3]]]

Welcome back, {{ username | title }}!

Your Workspace Overview:
{% for stat in default_stats %}
- {{ stat.label }}: {{ stat.value }}
{% endfor %}

Actions:
- Button: Open Gmail โ†’ https://mail.google.com
- Button: Open Calendar โ†’ https://calendar.google.com
- Button: Open Drive โ†’ https://drive.google.com
{% endmacro %}

The DSL line ยง[ฮดร—3, โ„Š[วตร—4], ยง[ฮดร—2, ษƒ[แตฌร—3]]] defines the card structure: a Section with 3 DecoratedText widgets, a Grid with 4 items, and a nested Section with 2 DecoratedText widgets and a ButtonList with 3 buttons. The Jinja2 template fills in the content dynamically โ€” and because it's persisted to templates/dynamic/, it's immediately available to send_dynamic_card and other tools.

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
  • ๐Ÿ’ฌ DSL Integration: Macros can output card DSL notation for rich Google Chat cards

๐Ÿš€ Real-World Usage

Templates can be directly used in tool calls for beautiful, structured output:

# 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:

๐Ÿ—‚๏ธ Resource Discovery

GoogleUnlimited provides a powerful MCP resource system that enables lightning-fast data access without API calls through intelligent URI patterns.

Resource Discovery

๐ŸŽฏ 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

โšก Lightning-Fast Access

# 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:

๐Ÿงช 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

Testing Framework

The client tests are the most important component - they provide deterministic testing of MCP operations using real resource integration and standardized patterns across all 92+ tools and 9 Google services. These tests validate both explicit email authentication and middleware injection patterns.

๐Ÿš€ Quick Test Commands

# ๐Ÿงช 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:

# 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 check and formatting with ruff format
    • Full test suite execution
  • TestPyPI Publishing: Automated package publishing for testing

๐Ÿ“š Testing Resources:

๐Ÿ”’ Security & Authentication

GoogleUnlimited implements enterprise-grade security with OAuth 2.1 + PKCE, advanced session management, and comprehensive audit capabilities.

Security Architecture

๐Ÿ›ก๏ธ 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

# ๐Ÿ”’ 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:


๐Ÿš€ Ready to revolutionize your Google Workspace integration?

๐Ÿ“š Documentation โ€ข ๐Ÿ”ง Configuration โ€ข ๐ŸŽฏ API Reference โ€ข ๐Ÿงช Testing

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google_workspace_unlimited-1.8.0.tar.gz (4.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

google_workspace_unlimited-1.8.0-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file google_workspace_unlimited-1.8.0.tar.gz.

File metadata

  • Download URL: google_workspace_unlimited-1.8.0.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for google_workspace_unlimited-1.8.0.tar.gz
Algorithm Hash digest
SHA256 d797ba5eff68f47d51722e26da7968ee6d556d6a7d40f18c8ad4a3bc762de434
MD5 ff5f9f2263f502c2848f32650e6f96a9
BLAKE2b-256 ea8af6b3cd321daba34ae0d8be8cfd0c03e4953eff804458c00b452db5f31a79

See more details on using hashes here.

File details

Details for the file google_workspace_unlimited-1.8.0-py3-none-any.whl.

File metadata

  • Download URL: google_workspace_unlimited-1.8.0-py3-none-any.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for google_workspace_unlimited-1.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1395a042d9a82dedd882d528ace72b01563c92e77fc48927e12ac2f116021fbd
MD5 9ca09ef70e27593a60c9e1efc7984a36
BLAKE2b-256 3d8f54dd77efafbcecd338f15813dcc35d17bf314a5557bcd20985d9858f4b06

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page