Claude-skill-registry Cloud Run Manager
Tool suite for deploying and managing Google Cloud Run services. Use for deployments, logging, and service inspection.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cloud-run-manager" ~/.claude/skills/majiayu000-claude-skill-registry-cloud-run-manager-63e68b && rm -rf "$T"
manifest:
skills/data/cloud-run-manager/SKILL.mdsource content
Cloud Run Manager Skill
This skill grants access to the Google Cloud Run MCP tools. Use this to manage the lifecycle of containerized applications.
When to use
- Deploying new services (source or container based).
- Inspecting running services.
- Fetching service logs for debugging.
- Listing projects and services.
Available Tools (Context Loaded)
The following tools are available via the
cloudrun MCP server:
Deployment
: Initialize a new GCP project.mcp_cloudrun_create_project
: Deploy an existing image (e.g., from GCR/Artifact Registry).mcp_cloudrun_deploy_container_image
: Deploy source code directly from a local path.mcp_cloudrun_deploy_local_folder
: Deploy ad-hoc files (useful for quick tests).mcp_cloudrun_deploy_file_contents
Management & Observability
: View available GCP projects.mcp_cloudrun_list_projects
: List services in a project.mcp_cloudrun_list_services
: Get detailed status/config of a generic service.mcp_cloudrun_get_service
: Retrieve logs and error messages.mcp_cloudrun_get_service_log
Best Practices
- Project ID: Always confirm the
ID with the user or viaproject
before deploying.list_projects - Region: Default to
if unspecified, or ask the user.us-central1 - Logs: usage of
is expensive; request specific timeframes or limits if possible.get_service_log
Example Workflow
- User: "Deploy this folder to Cloud Run."
- Agent: Calls
to verify destination.mcp_cloudrun_list_projects - Agent: Calls
.mcp_cloudrun_deploy_local_folder