PluginBench
MCP Server

com.pulsemcp/google-calendar MCP Server

com.pulsemcp/google-calendar

What is the com.pulsemcp/google-calendar MCP server?

MCP server for Google Calendar integration with service account support and domain-wide delegation.

How to install com.pulsemcp/google-calendar

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL
    required

    Service account email address from Google Cloud Console.

  • GCAL_SERVICE_ACCOUNT_PRIVATE_KEY
    required
    secret

    Service account private key in PEM format from Google Cloud Console.

  • GCAL_IMPERSONATE_EMAIL
    required

    Email address of the user whose calendar to access via domain-wide delegation.

  • ENABLED_TOOLGROUPS

    Comma-separated list of tool groups to enable (readonly or readwrite).

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "google-calendar": {
      "command": "npx",
      "args": [
        "-y",
        "google-calendar-workspace-mcp-server",
        "-y"
      ],
      "env": {
        "GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL": "<YOUR_GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL>",
        "GCAL_SERVICE_ACCOUNT_PRIVATE_KEY": "<YOUR_GCAL_SERVICE_ACCOUNT_PRIVATE_KEY>",
        "GCAL_IMPERSONATE_EMAIL": "<YOUR_GCAL_IMPERSONATE_EMAIL>",
        "ENABLED_TOOLGROUPS": "<YOUR_ENABLED_TOOLGROUPS>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "google-calendar": {
      "command": "npx",
      "args": [
        "-y",
        "google-calendar-workspace-mcp-server",
        "-y"
      ],
      "env": {
        "GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL": "<YOUR_GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL>",
        "GCAL_SERVICE_ACCOUNT_PRIVATE_KEY": "<YOUR_GCAL_SERVICE_ACCOUNT_PRIVATE_KEY>",
        "GCAL_IMPERSONATE_EMAIL": "<YOUR_GCAL_IMPERSONATE_EMAIL>",
        "ENABLED_TOOLGROUPS": "<YOUR_ENABLED_TOOLGROUPS>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "google-calendar": {
      "command": "npx",
      "args": [
        "-y",
        "google-calendar-workspace-mcp-server",
        "-y"
      ],
      "env": {
        "GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL": "<YOUR_GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL>",
        "GCAL_SERVICE_ACCOUNT_PRIVATE_KEY": "<YOUR_GCAL_SERVICE_ACCOUNT_PRIVATE_KEY>",
        "GCAL_IMPERSONATE_EMAIL": "<YOUR_GCAL_IMPERSONATE_EMAIL>",
        "ENABLED_TOOLGROUPS": "<YOUR_ENABLED_TOOLGROUPS>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "google-calendar": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "google-calendar-workspace-mcp-server",
        "-y"
      ],
      "env": {
        "GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL": "<YOUR_GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL>",
        "GCAL_SERVICE_ACCOUNT_PRIVATE_KEY": "<YOUR_GCAL_SERVICE_ACCOUNT_PRIVATE_KEY>",
        "GCAL_IMPERSONATE_EMAIL": "<YOUR_GCAL_IMPERSONATE_EMAIL>",
        "ENABLED_TOOLGROUPS": "<YOUR_ENABLED_TOOLGROUPS>"
      }
    }
  }
}
Claude Code
claude mcp add google-calendar --env GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL=<YOUR_GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL> --env GCAL_SERVICE_ACCOUNT_PRIVATE_KEY=<YOUR_GCAL_SERVICE_ACCOUNT_PRIVATE_KEY> --env GCAL_IMPERSONATE_EMAIL=<YOUR_GCAL_IMPERSONATE_EMAIL> --env ENABLED_TOOLGROUPS=<YOUR_ENABLED_TOOLGROUPS> -- npx -y google-calendar-workspace-mcp-server -y

Related MCP servers

MCP server for AppSignal — get alert details, search logs, and retrieve logs within time ranges.

View repository →

MCP server for AWS DynamoDB with fine-grained tool control and configurable access levels.

View repository →

MCP server for Fetch Pet insurance claims management using Playwright automation.

View repository →

MCP server for managing Fly.io machines, apps, logs, and Docker images.

View repository →

MCP server for Google Cloud Storage with fine-grained tool access control.

View repository →

MCP server for Gmail with OAuth2 (personal) and service account (Workspace) support.

View repository →