Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Cloud Storage Agent

FreeNot checked

An MCP server deployed on Cloud Run that enables reading Cloud Storage and leveraging Vertex AI models via natural language.

GitHubEmbed

About

An MCP server deployed on Cloud Run that enables reading Cloud Storage and leveraging Vertex AI models via natural language.

README

Cloud Run Service Account

Create or choose a service account for the deployed agent.

PROJECT_ID=YOUR_PROJECT_ID
SERVICE_ACCOUNT_EMAIL=YOUR_SERVICE_ACCOUNT_EMAIL

Grant it read-only access to Cloud Storage:

gcloud services enable storage.googleapis.com \
  --project  $PROJECT_ID
gcloud projects add-iam-policy-binding $PROJECT_ID \
  --member="serviceAccount:${SERVICE_ACCOUNT_EMAIL}" \
  --role="roles/storage.viewer"

For Vertex AI / Gemini access, also grant the required Vertex AI permissions:

gcloud projects add-iam-policy-binding $PROJECT_ID \
  --member="serviceAccount:${SERVICE_ACCOUNT_EMAIL}" \
  --role="roles/aiplatform.user"

MCP User Role

gcloud projects add-iam-policy-binding $PROJECT_ID \
  --member="serviceAccount:${SERVICE_ACCOUNT_EMAIL}" \
  --role="roles/mcp.toolUser"

Deploy to Cloud Run

gcloud run deploy cloud-storage-agent \
  --source . \
  --region us-central1 \
  --allow-unauthenticated \
  --service-account SERVICE_ACCOUNT_EMAIL \
   --set-env-vars GOOGLE_GENAI_USE_VERTEXAI=true,GOOGLE_CLOUD_PROJECT=PROJECT_ID,GOOGLE_CLOUD_LOCATION=us-central1,AGENT_MODEL=gemini-2.5-flash

from github.com/gabrielpreda/adk-mcp-gcs-cloudrun

Installing Cloud Storage Agent

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/gabrielpreda/adk-mcp-gcs-cloudrun

FAQ

Is Cloud Storage Agent MCP free?

Yes, Cloud Storage Agent MCP is free — one-click install via Unyly at no cost.

Does Cloud Storage Agent need an API key?

No, Cloud Storage Agent runs without API keys or environment variables.

Is Cloud Storage Agent hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Cloud Storage Agent in Claude Desktop, Claude Code or Cursor?

Open Cloud Storage Agent on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Cloud Storage Agent with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs