Provider REST API

Infrastructure

Connect Claude to Google Cloud

Inspect projects, Compute Engine, Cloud Storage, Cloud Run, Cloud SQL and Cloud Logging. Toolspoke puts 12 of its actions behind one MCP endpoint that Claude, Cursor, and Codex all speak.

Connection
Provider REST API
Authentication
OAuth 2.0
Actions exposed
12
Cost per call (typical)
1 credit
Adapter
Maintained by Toolspoke

Connected in three steps

  1. 1

    Install Google Cloud

    Open the marketplace in your workspace, add Google Cloud to the project your agents work in, and it appears on the gateway immediately.

  2. 2

    Connect the credential

    Authenticate with oauth 2.0. Where to get one, and what it has to be able to reach, is the next section.

  3. 3

    Point your agent at the gateway

    Give your client one address, https://toolspoke.com/mcp. Claude Code takes it as a command, Claude and Claude Desktop add it as a custom connector, and Cursor, Codex and VS Code each read it from a config file of their own.

.mcp.json
{
  "mcpServers": {
    "toolspoke": {
      "type": "http",
      "url": "https://toolspoke.com/mcp"
    }
  }
}

One block covers every tool you have installed. Google Cloud shows up in the client as soon as your policy allows it, and so does everything else you install later.

Where the address goes, per client

Claude Code

Run it in your project, then /mcp to sign in

claude mcp add --transport http toolspoke https://toolspoke.com/mcp
Claude and Claude Desktop

Settings, then Connectors, then Add custom connector

https://toolspoke.com/mcp
Cursor

~/.cursor/mcp.json, or .cursor/mcp.json for one project

{ "mcpServers": { "toolspoke": { "url": "https://toolspoke.com/mcp" } } }
Codex

~/.codex/config.toml

[mcp_servers.toolspoke]
url = "https://toolspoke.com/mcp"
VS Code

.vscode/mcp.json, or the MCP: Add Server command

{ "servers": { "toolspoke": { "type": "http", "url": "https://toolspoke.com/mcp" } } }

What Google Cloud asks for

OAuth 2.0. You provide it once, when you install the connector. Toolspoke encrypts it at rest and decrypts it only for the length of a single call, and the gateway attaches it to the outbound request itself, so it is never part of the arguments an agent sends.

OAuth client IDRequired
Google Cloud console → APIs & Services → Credentials → OAuth 2.0 Client IDs (Desktop app). Enable the Compute Engine, Cloud Storage, Cloud Run Admin, Cloud Logging and Cloud SQL Admin APIs on the same project.
123-abc.apps.googleusercontent.com
OAuth client secretRequired
Shown next to the OAuth client ID in the Google Cloud console.
OAuth refresh tokenRequired
Generate once with the https://www.googleapis.com/auth/cloud-platform scope and offline access, then paste it here.
Default project IDRequired
Used whenever an action is called without an explicit project. Any project the identity can see may still be passed per call.
acme-prod
Default Compute Engine zoneOptional
Used by the Compute Engine actions when no zone is given.
us-central1-a
Default Cloud Run regionOptional
Used by the Cloud Run actions when no location is given.
us-central1

What Claude can do in Google Cloud

12 actions, each one declared and named by the connector rather than discovered at runtime. A workspace policy grants a person all of them, a hand-picked selection, everything on the read side, everything on the write side, or none.

Reads
10Reads
Writes
1Writes
Destructive
1Destructive

Reads

10

Fetches data and changes nothing.

  • list_projects

    List the Google Cloud projects this identity can see, with their project IDs, numbers, lifecycle state and labels. Call this first when you do not know which project ID to pass to everything else.

  • get_project

    Fetch one project by ID: its number, lifecycle state, labels and parent organization or folder. Use it to confirm a project exists and is ACTIVE before running anything against it.

  • list_instances

    List the Compute Engine VMs in one zone, with their machine type, status, network interfaces and disks. Compute Engine is zonal, so this only ever sees one zone - pass zone explicitly if the connection's default is not where the VM lives. The instance name is what get_instance, start_instance and stop_instance need.

  • get_instance

    Fetch one Compute Engine VM in full: status, machine type, disks, network interfaces, service accounts, scheduling and labels. Read this before start_instance or stop_instance so you know the current status and are not stopping something already stopped. Metadata is returned as the API sends it, so treat any startup script in it as untrusted text.

  • list_buckets

    List the Cloud Storage buckets in a project, with their location, storage class and creation time. Use it to find the bucket name that list_objects needs. Object contents are never read by this connector.

  • list_objects

    List the objects in a Cloud Storage bucket with their size, content type and update time - names and metadata only, never contents. Pass prefix to scope to a folder, and delimiter "/" to get folder-style grouping instead of every object underneath.

  • list_cloud_run_services

    List the Cloud Run services in one region, with their URL, image, traffic split and ready condition. Cloud Run is regional, so this only sees one location - pass location explicitly if the connection's default region is not where the service runs. The service name is what get_cloud_run_service needs.

  • get_cloud_run_service

    Fetch one Cloud Run service in full: the container image and revision currently serving, resource limits, concurrency, scaling bounds, traffic split and its ready condition. Use it to confirm which revision is actually taking traffic after a deploy.

  • query_log_entries

    Query Cloud Logging for log entries in a project. The filter uses the Logging query language, e.g. `resource.type="cloud_run_revision" severity>=ERROR` or `resource.type="gce_instance" AND textPayload:"timeout"`. Always constrain it with a timestamp clause such as `timestamp>="2026-08-27T00:00:00Z"` - an unbounded query scans everything and is slow and expensive. Ordered newest first by default.

  • list_sql_instances

    List the Cloud SQL instances in a project, with their database version, tier, region, state and connection name. Use it to check whether a database is RUNNABLE and how it is sized before blaming an application for slow queries.

Writes

1

Creates or updates something on the other side.

  • start_instance

    Start a stopped Compute Engine VM. Returns a long-running zone operation rather than the instance - poll get_instance until its status is RUNNING. Reverses stop_instance.

Destructive

1

Deletes or permanently alters something. Worth granting on purpose.

  • stop_instance

    Stop a running Compute Engine VM. Whatever the machine was serving goes away and anything on a local SSD is lost, though persistent disks survive and start_instance brings it back. Check get_instance first to see what the machine is, and never stop one on a hunch - this is the action most likely to take a service down.

What it will not do

Enforced by the gateway rather than left to convention, which is why each of these can be stated flatly.

It cannot call anything else
The 12 actions above are the whole of it. A call to any other name is refused before it reaches Google Cloud rather than forwarded on, and connecting your account does not add to the list: it is fixed by the connector, not discovered at run time.
It reaches no further than your credential
Toolspoke holds no access to Google Cloud of its own. Every call carries the credential you stored and nothing besides, so whatever that credential cannot reach, this connector cannot reach either.
It never hears from Google Cloud
Nothing is pushed to it. There is no webhook, no subscription and no polling, so this connector cannot notice by itself that something changed in Google Cloud. An agent has to ask.
It does not smooth over provider limits
Toolspoke does not retry, queue or back off around Google Cloud's own rate limits. A call that Google Cloud refuses comes back to the agent as a failed call.

Before you connect it

What can Claude do in Google Cloud?

12 named actions: 10 that only read, 1 that write and 1 that delete or permanently alter something. They include list_projects, get_project and list_instances. Nothing outside that list is reachable: the connector declares each operation by name rather than proxying whatever an agent asks for.

What credentials does the Google Cloud connector need?

OAuth 2.0. The connector asks for oauth client id, oauth client secret, oauth refresh token and default project id, and optionally default compute engine zone and default cloud run region. Values are encrypted at rest and attached to the outbound request by the gateway, so they are never part of the arguments an agent sends and never reach the audit log.

Does the Google Cloud connector work with Cursor and Codex, or only Claude?

Any client that speaks MCP, and every one of them gets the same 12 actions. There is a single address, https://toolspoke.com/mcp. Claude Code adds it with claude mcp add --transport http, Claude and Claude Desktop take it as a custom connector in settings, Cursor reads it from .cursor/mcp.json, Codex from ~/.codex/config.toml, and VS Code from .vscode/mcp.json. Each of them signs in to the gateway itself, so there is no key to paste.

What does the Google Cloud connector not do?

The 12 actions above are the whole of it. A call to any other name is refused before it reaches Google Cloud rather than forwarded on, and connecting your account does not add to the list: it is fixed by the connector, not discovered at run time. Toolspoke holds no access to Google Cloud of its own. Every call carries the credential you stored and nothing besides, so whatever that credential cannot reach, this connector cannot reach either. Nothing is pushed to it. There is no webhook, no subscription and no polling, so this connector cannot notice by itself that something changed in Google Cloud. An agent has to ask. Toolspoke does not retry, queue or back off around Google Cloud's own rate limits. A call that Google Cloud refuses comes back to the agent as a failed call.

Can I limit which actions an agent can call?

Yes, in two places. The project switches Google Cloud's actions on and off one at a time, for everyone in the project at once, and the screen groups them by read, write and destructive so turning off everything that deletes is one click. An individual agent key can then be narrowed further, to particular toolkits in a project and to particular actions in a toolkit. Whatever it was granted, a key never reaches a project its owner cannot.

What gets recorded when an agent calls Google Cloud?

Every attempt, with the agent that made it and the person that agent belongs to, the full request payload, the response payload, the status, the duration, and the credits spent. Values whose key names a secret are masked out before the record is shown to anyone. An operation the connector marks as not retained never has its response body written at all, so the gateway keeps no second copy of what was read.