A Model Context Protocol (MCP) server for interacting with Google Cloud Build.
| Feature | Tool | Parameters |
|---|---|---|
| List Cloud Build jobs for a project | list_cloud_build_jobs |
project_id |
| View details of a specific Cloud Build job | get_cloud_build_job |
project_id, build_id |
| Create new Cloud Build jobs | create_cloud_build_job |
project_id, build_config_json |
| Retry failed or cancelled Cloud Build jobs | retry_cloud_build_job |
project_id, build_id |
- Go 1.21+
- Google Cloud project with Cloud Build API enabled
- Google Application Default Credentials (ADC):
gcloud auth application-default login
cd cmd
go build -o cloud-build-mcp-server./cloud-build-mcp-serverTo use this MCP server with your agent, add the following to your settings:
Consider using this in Gemini CLI.
{ "mcpServers": { "cloudbuild": { "command": "/path/to/cloud-build-mcp-server" } } }