Community MCP server for Google Cloud Platform. Agents can manage Cloud Storage buckets and objects, execute BigQuery queries, deploy to Cloud Run, publish and subscribe to Pub/Sub topics, and manage Compute Engine instances. Supports service account and OAuth authentication. Useful for data engineering, ML pipeline management, and cloud infrastructure automation on GCP.
npx -y gcp-mcp
{
"mcpServers": {
"gcp": {
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/service-account.json"
},
"args": [
"-y",
"gcp-mcp"
],
"command": "npx"
}
}
}Deploy Cloud Function
{
"type": "object",
"required": [
"name",
"runtime",
"entry_point"
],
"properties": {
"name": {
"type": "string"
},
"runtime": {
"type": "string"
},
"entry_point": {
"type": "string"
}
}
}// Input
{
"name": "process-order",
"runtime": "nodejs20",
"entry_point": "handler"
}// Output
{
"url": "https://europe-west1-my-project.cloudfunctions.net/process-order",
"status": "ACTIVE"
}List GCP Compute instances
{
"type": "object",
"required": [
"project"
],
"properties": {
"zone": {
"type": "string"
},
"project": {
"type": "string"
}
}
}// Input
{
"zone": "europe-west1-b",
"project": "my-project"
}// Output
{
"instances": [
{
"name": "web-1",
"status": "RUNNING",
"machineType": "e2-medium"
}
]
}Community MCP server for Google Cloud Platform. Agents can manage Cloud Storage buckets and objects, execute BigQuery queries, deploy to Cloud Run, publish and subscribe to Pub/Sub topics, and manage Compute Engine instances. Supports service account and OAuth authentication. Useful for data engineering, ML pipeline management, and cloud infrastructure automation on GCP.
Google Cloud Platform provides 3 tools including deploy_function, list_instances, query_bigquery.
Google Cloud Platform offers a free tier with 200 calls per month. For higher usage, paid plans start at €0/month.
You can install Google Cloud Platform using the following command: npx -y gcp-mcp. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Run BigQuery SQL query
{
"type": "object",
"required": [
"project",
"query"
],
"properties": {
"query": {
"type": "string"
},
"project": {
"type": "string"
}
}
}// Input
{
"query": "SELECT COUNT(*) as cnt FROM events",
"project": "my-project"
}// Output
{
"rows": [
{
"cnt": 1500000
}
],
"totalRows": 1
}Google Cloud Platform is listed under the infrastructure category in the AgentForge MCP registry.
Google Cloud Platform has a current uptime of 99.8% with an average response time of 280ms.
To connect Google Cloud Platform, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Google Cloud Platform's tools via the Model Context Protocol.