Gemini Enterprise MCP Tools
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Gemini Enterprise MCP Toolswhat's the current time?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Enterprise MCP Agent Architecture
This repository contains a modular, Serverless AI architecture built completely independently of the Google Agent Development Kit (ADK). It leverages the pure google.genai SDK and the open-source Model Context Protocol (MCP), deeply integrated into the Gemini Enterprise (Vertex AI Agent Builder) UI.
🏗️ Architecture
MCP Tool Server (
mcp_server.py): A standard FastMCP server that exposes tools (Wikipedia, Math, GitHub). Completely decoupled from any LLM logic.Custom Gemini App (
mcp_client_app.py): A standalone FastAPI Python backend client. It connects to the MCP server, processes user prompts using the Gemini 2.5 Flash model via the standard SDK, handles complex multi-tool execution loops, and returns clean JSON.Client UI (
client_ui.html): A frontend user interface for interacting with the Custom Gemini App.Gemini Enterprise Playbook: The Google Cloud enterprise front-end can natively connect to the MCP server to directly expose these tools to a Vertex AI agent.
Related MCP server: Gemini Agent MCP Server
🚀 Deployment Instructions
1. Deploy the MCP Server
gcloud run deploy gemini-enterprise-mcp-tools \
--source . \
--region us-central1 \
--allow-unauthenticated \
--command "uvicorn,mcp_server:app,--host,0.0.0.0,--port,8080"2. Deploy the FastAPI App Client
gcloud run deploy gemini-enterprise-mcp-app \
--source . \
--region us-central1 \
--allow-unauthenticated \
--command "uvicorn,mcp_client_app:app,--host,0.0.0.0,--port,8080"(Note: Ensure you are authenticated and have the correct GCP project set up.)
🔗 How to Integrate with Gemini Enterprise (Vertex AI Agent Builder)
Follow these exact steps to connect the MCP Server directly to Vertex AI Agent Builder.
Step 1: Create the Agent
In the Google Cloud Console, search for Agent Builder (or Gemini Enterprise Agent Platform).
Go to Apps -> Create App.
Select Agent -> Build your own.
Give it a Display Name. CRITICAL: Set the Location to
us-central1. Click Create.
Step 2: Configure the MCP Tool
In your new Agent dashboard, click Tools on the left menu.
Click Create Tool -> Model Context Protocol (MCP) (if available in UI, otherwise follow standard MCP integration steps provided by Google Cloud).
Connect the tool directly to the Cloud Run URL of the deployed
gemini-enterprise-mcp-toolsservice.Ensure your agent is configured to use the MCP tools for its generated responses.
Step 3: Configure the Playbook
Go to Playbooks on the left menu and click on the Default Generative Playbook.
Goal: Paste the following:
You are an enterprise AI assistant. Your goal is to answer user questions using your MCP tools.Available Tools: At the bottom of the page, ensure the MCP tools are enabled.
Click Save.
Step 4: Test & Publish!
Use the Preview chat on the right side of the screen to send a test message.
Once working, go to the Integrations tab to generate a Web Widget (Dialogflow Messenger) snippet, or connect it to Google Chat, Slack, or Microsoft Teams.
Cost: The entire backend is Serverless (Cloud Run scales to zero) and the Playbook has no hourly uptime fee. This architecture costs $0.00 when idle!
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceProduction-ready MCP server for Google Maps Platform APIs, providing 11 tools for directions, places, geocoding, traffic, and road data to empower AI agents with location intelligence.114Apache 2.0
- AlicenseAqualityCmaintenanceAn advanced MCP server that provides an agentic interface to Google's Gemini 3.1 models via Vertex AI, combining real-time Google Search, URL analysis, and Python code execution to solve complex multi-step research and data tasks.1MIT
- AlicenseAqualityDmaintenanceAn MCP server that provides access to Google Gemini models via Vertex AI, enabling text generation, multi-turn chat, image/video generation, and frontend design through Claude Code.21MIT
- Flicense-qualityDmaintenanceAn MCP server that exposes 17 Google Workspace APIs (e.g., Gmail, Drive, Calendar) as auto-generated tools for AI assistants, enabling natural language control of Google services.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/omtrivedioo3/gemini-enterprise-mcp-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server