← Back to Plugins
MCP Server MCP

Google Workspace

github By github 👁 1 views ▲ 0 votes

Google Workspace MCP server for Gmail, Calendar, Drive, Docs, Sheets, Slides, Contacts, and more

Homepage Verified source GitHub

Install

npx -y @mindstone/[email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "registryBaseUrl": "https://registry.npmjs.org",
      "identifier": "@mindstone/mcp-server-google-workspace",
      "version": "0.4.1",
      "runtimeHint": "npx",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Google OAuth client ID",
          "isRequired": true,
          "format": "string",
          "name": "GOOGLE_CLIENT_ID"
        },
        {
          "description": "Google OAuth client secret",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "GOOGLE_CLIENT_SECRET"
        },
        {
          "description": "Path to accounts.json written by the MCP host",
          "isRequired": true,
          "format": "filepath",
          "name": "ACCOUNTS_PATH"
        },
        {
          "description": "Directory containing per-account Google OAuth token files",
          "isRequired": true,
          "format": "filepath",
          "name": "CREDENTIALS_PATH"
        },
        {
          "description": "Outbound Google API request timeout in milliseconds (max 300000 = 5 min)",
          "format": "number",
          "default": "60000",
          "name": "GOOGLE_WORKSPACE_REQUEST_TIMEOUT_MS"
        },
        {
          "description": "Set to 1 to disable background OAuth token refresh (tokens are only read, never refreshed)",
          "format": "string",
          "default": "0",
          "name": "GOOGLE_WORKSPACE_DISABLE_REFRESH"
        },
        {
          "description": "Directory attachments and downloaded files are constrained to (defaults to a temp dir; reads/writes outside it are refused)",
          "format": "filepath",
          "name": "MCP_WORKSPACE_PATH"
        },
        {
          "description": "Legacy fallback for MCP_WORKSPACE_PATH; prefer MCP_WORKSPACE_PATH",
          "format": "filepath",
          "name": "WORKSPACE_BASE_PATH"
        },
        {
          "description": "Legacy fallback path to gauth.json OAuth client config; host-orchestrated setups use GOOGLE_CLIENT_ID/GOOGLE_CLIENT_SECRET instead",
          "format": "filepath",
          "name": "GAUTH_FILE"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...