Skip to main content
Glama

Cloud Run MCP Server

Official

deploy_file_contents

Deploy files directly to Cloud Run by providing their contents in a chat context. Specify filenames and content for quick deployment without local file storage.

Instructions

Deploy files to Cloud Run by providing their contents directly. Takes an array of file objects containing filename and content. Use this tool if the files only exist in the current chat context.

Input Schema

NameRequiredDescriptionDefault
filesYesArray of file objects containing filename and content
projectYesGoogle Cloud project ID. Leave unset for the app to be deployed in a new project. If provided, make sure the user confirms the project ID they want to deploy to.
regionNoRegion to deploy the service toeurope-west1
serviceNoName of the Cloud Run service to deploy toapp

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "files": { "description": "Array of file objects containing filename and content", "items": { "additionalProperties": false, "properties": { "content": { "description": "Text content of the file", "type": "string" }, "filename": { "description": "Name and path of the file (e.g. \"src/index.js\" or \"data/config.json\")", "type": "string" } }, "required": [ "filename" ], "type": "object" }, "type": "array" }, "project": { "description": "Google Cloud project ID. Leave unset for the app to be deployed in a new project. If provided, make sure the user confirms the project ID they want to deploy to.", "type": "string" }, "region": { "default": "europe-west1", "description": "Region to deploy the service to", "type": "string" }, "service": { "default": "app", "description": "Name of the Cloud Run service to deploy to", "type": "string" } }, "required": [ "project", "files" ], "type": "object" }
Install Server

Other Tools from Cloud Run MCP Server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/GoogleCloudPlatform/cloud-run-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server