Skip to content

Commit f62ed26

Browse files
committed
Add Google Cloud Run MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit f62ed26

1 file changed

Lines changed: 78 additions & 0 deletions

File tree

servers/com.cloudrun-mcp-npx.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.cloudrun-mcp-npx",
4+
"name": "Google Cloud Run (npx)",
5+
"alias": "cloud-run",
6+
"description": "Deploy and manage applications on Google Cloud Run directly from your AI client. Deploy local folders or file contents, list and inspect services, read logs, and manage GCP projects. Uses your local gcloud Application Default Credentials.",
7+
"logo": "https://avatars.githubusercontent.com/u/2810941?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"cloud"
11+
],
12+
"tags": [
13+
"google-cloud",
14+
"gcp",
15+
"cloud-run",
16+
"deployment",
17+
"serverless",
18+
"containers"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@google-cloud/cloud-run-mcp"
26+
],
27+
"env": {
28+
"GOOGLE_CLOUD_PROJECT": "${input:GOOGLE_CLOUD_PROJECT}",
29+
"GOOGLE_CLOUD_REGION": "${input:GOOGLE_CLOUD_REGION}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "GOOGLE_CLOUD_PROJECT",
35+
"label": "Google Cloud Project ID",
36+
"description": "Optional. Default GCP project ID to use for deployments. If omitted, the server can list projects and prompt you to pick one.",
37+
"type": "text",
38+
"required": false,
39+
"secret": false,
40+
"placeholder": "my-gcp-project-id"
41+
},
42+
{
43+
"id": "GOOGLE_CLOUD_REGION",
44+
"label": "Google Cloud Region",
45+
"description": "Optional. Default Cloud Run region for deployments (e.g. us-central1). Defaults to europe-west1 if not set.",
46+
"type": "text",
47+
"required": false,
48+
"secret": false,
49+
"placeholder": "us-central1"
50+
}
51+
]
52+
}
53+
},
54+
"auth": {
55+
"type": "none",
56+
"instructions": "Authenticate first with `gcloud auth application-default login`; the server uses your local Google Cloud credentials."
57+
},
58+
"contributor": {
59+
"name": "Google Cloud",
60+
"github": "GoogleCloudPlatform",
61+
"url": "https://cloud.google.com/run"
62+
},
63+
"links": {
64+
"repository": "https://github.com/GoogleCloudPlatform/cloud-run-mcp",
65+
"homepage": "https://cloud.google.com/run",
66+
"documentation": "https://github.com/GoogleCloudPlatform/cloud-run-mcp#readme"
67+
},
68+
"platforms": [
69+
"all"
70+
],
71+
"capabilities": {
72+
"tools": true,
73+
"resources": false,
74+
"prompts": true,
75+
"read_only_mode": false
76+
},
77+
"changelog_url": "https://github.com/GoogleCloudPlatform/cloud-run-mcp/releases"
78+
}

0 commit comments

Comments
 (0)