cloud-build-mcp-server

jerop/cloud-build-mcp-server

3.2

If you are the rightful owner of cloud-build-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A Model Context Protocol (MCP) server designed for interacting with Google Cloud Build.

Tools
4
Resources
0
Prompts
0

Cloud Build MCP Server

A Model Context Protocol (MCP) server for interacting with Google Cloud Build.

Tools

FeatureToolParameters
List Cloud Build jobs for a projectlist_cloud_build_jobsproject_id
View details of a specific Cloud Build jobget_cloud_build_jobproject_id, build_id
Create new Cloud Build jobscreate_cloud_build_jobproject_id, build_config_json
Retry failed or cancelled Cloud Build jobsretry_cloud_build_jobproject_id, build_id

Prerequisites

Build and Run

1. Build the Server

cd cmd
go build -o cloud-build-mcp-server

2. Run the Server

./cloud-build-mcp-server

Use in Agent

To use this MCP server with your agent, add the following to your settings:

{
    "mcpServers": {
        "cloudbuild": {
            "command": "/path/to/cloud-build-mcp-server"
        }
    }
}

Consider using this in Gemini CLI.