mcp-google-agent-platform-docs

mcp-google-agent-platform-docs

About MCP server for Google Agent Platform Docs β€” Google AI + Vertex AI. 3400+ pages searchable by AI agents.

Category
Visit Server

README

mcp-google-agent-platform-docs

MCP server providing Google AI platform documentation to AI agents.

Python 3.10+ MCP License: MIT

Part of OpenGerwin MCP Servers

What is this?

An MCP (Model Context Protocol) server that gives AI agents direct access to Google's AI platform documentation β€” both the current Gemini Enterprise Agent Platform (GEAP) and the legacy Vertex AI Generative AI docs.

Instead of hallucinating API details, your AI assistant can look up the actual documentation in real-time.

Features

  • πŸ” Full-text search across 3400+ documentation pages
  • πŸ“„ On-demand fetching β€” pages are downloaded and cached as you need them
  • πŸ—‚οΈ Dual source β€” current GEAP + legacy Vertex AI documentation
  • ⚑ Smart caching β€” 72-hour TTL, stale fallback on network errors
  • πŸ—ΊοΈ Auto-discovery β€” new pages found via sitemap scanning (weekly)
  • 🧩 Plug & play β€” works with Claude Desktop, Cursor, VS Code, any MCP client

Quick Start

Install

# Using pip
pip install mcp-google-agent-platform-docs

# Using uv (recommended)
uv pip install mcp-google-agent-platform-docs

Configure Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "google-agent-platform-docs": {
      "command": "mcp-google-agent-platform-docs"
    }
  }
}

Configure Antigravity (Google)

Add to ~/.gemini/antigravity/mcp_config.json:

{
  "mcpServers": {
    "google-agent-platform-docs": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/mcp-google-agent-platform-docs",
        "run",
        "mcp-google-agent-platform-docs"
      ]
    }
  }
}

Configure Cursor / VS Code

Add to your MCP settings:

{
  "mcpServers": {
    "google-agent-platform-docs": {
      "command": "mcp-google-agent-platform-docs",
      "transport": "stdio"
    }
  }
}

Tools

search_docs

Search documentation by keywords.

search_docs("Memory Bank setup", source="geap")
search_docs("function calling", source="vertex-ai")

get_doc

Get full content of a specific page.

get_doc("scale/memory-bank/setup", source="geap")
get_doc("multimodal/function-calling", source="vertex-ai")

list_sections

Browse documentation structure.

list_sections(source="geap")

list_models

Quick reference for all available AI models (Gemini, Imagen, Veo, Claude, etc.).

list_models()

Documentation Sources

Source ID Platform Pages Status
geap Gemini Enterprise Agent Platform 2300+ Primary (current)
vertex-ai Vertex AI Generative AI 1100+ Legacy (archive)

GEAP Sections

  • Agent Studio β€” Visual agent builder
  • Agents β†’ Build β€” Runtime, ADK, Agent Garden, RAG Engine
  • Agents β†’ Scale β€” Sessions, Memory Bank, Code Execution
  • Agents β†’ Govern β€” Policies, Agent Gateway, Model Armor
  • Agents β†’ Optimize β€” Observability, Evaluation, Quality Alerts
  • Models β€” Gemini, Imagen, Veo, Lyria, Partners, Open Models
  • Notebooks β€” Jupyter tutorials

Configuration

Environment variables for customization:

Variable Default Description
MCP_DOCS_CACHE_DIR ~/.cache/mcp-google-agent-platform-docs Cache directory
MCP_DOCS_CONTENT_TTL 72 Page cache TTL (hours)
MCP_DOCS_STRUCTURE_TTL 7 Structure cache TTL (days)
MCP_DOCS_DEFAULT_SOURCE geap Default documentation source
MCP_DOCS_HTTP_TIMEOUT 30 HTTP timeout (seconds)

Development

# Clone
git clone https://github.com/OpenGerwin/mcp-google-agent-platform-docs.git
cd mcp-google-agent-platform-docs

# Install dependencies
uv sync

# Run server locally
uv run mcp-google-agent-platform-docs

# Test with MCP Inspector
uv run mcp dev src/mcp_google_agent_platform_docs/server.py

Architecture

mcp-google-agent-platform-docs/
β”œβ”€β”€ sources/                    # YAML source configurations
β”‚   β”œβ”€β”€ geap.yaml               # GEAP (primary)
β”‚   └── vertex-ai.yaml          # Vertex AI (legacy)
β”œβ”€β”€ src/mcp_google_agent_platform_docs/
β”‚   β”œβ”€β”€ server.py               # FastMCP server + 4 tools
β”‚   β”œβ”€β”€ source.py               # Source model (YAML loader)
β”‚   β”œβ”€β”€ fetcher.py              # HTML β†’ Markdown converter
β”‚   β”œβ”€β”€ cache.py                # TTL cache manager
β”‚   β”œβ”€β”€ discovery.py            # Sitemap-based page discovery
β”‚   β”œβ”€β”€ search.py               # TF-IDF search engine
β”‚   └── config.py               # Global configuration
└── tests/

License

MIT β€” see LICENSE.


Part of OpenGerwin MCP Servers

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured