mcp-google-agent-platform-docs
mcp-google-agent-platform-docs
MCP-сервер, предоставляющий AI-агентам доступ к документации платформы Google AI.
Часть OpenGerwin MCP Servers
Что это такое?
Сервер MCP (Model Context Protocol), который предоставляет AI-агентам прямой доступ к документации платформы Google AI — как к актуальной Gemini Enterprise Agent Platform (GEAP), так и к устаревшей документации Vertex AI Generative AI.
Вместо того чтобы гадать о деталях API, ваш AI-ассистент может искать актуальную документацию в режиме реального времени.
Related MCP server: RAG Docs MCP Server
Возможности
🔍 Полнотекстовый поиск по более чем 3400 страницам документации
📄 Загрузка по запросу — страницы скачиваются и кэшируются по мере необходимости
🗂️ Двойной источник — актуальная документация GEAP + устаревшая Vertex AI
⚡ Умное кэширование — TTL 72 часа, использование устаревших данных при сетевых ошибках
🗺️ Автообнаружение — новые страницы находятся через сканирование карты сайта (еженедельно)
🧩 Plug & play — работает с Claude Desktop, Cursor, VS Code и любым MCP-клиентом
Быстрый старт
Установка
# Using pip
pip install mcp-google-agent-platform-docs
# Using uv (recommended)
uv pip install mcp-google-agent-platform-docsНастройка Claude Desktop
Добавьте в ваш claude_desktop_config.json:
{
"mcpServers": {
"google-agent-platform-docs": {
"command": "mcp-google-agent-platform-docs"
}
}
}Настройка Antigravity (Google)
Добавьте в ~/.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"
]
}
}
}Настройка Cursor / VS Code
Добавьте в настройки MCP:
{
"mcpServers": {
"google-agent-platform-docs": {
"command": "mcp-google-agent-platform-docs",
"transport": "stdio"
}
}
}Инструменты
search_docs
Поиск по документации по ключевым словам.
search_docs("Memory Bank setup", source="geap")
search_docs("function calling", source="vertex-ai")get_doc
Получение полного содержимого конкретной страницы.
get_doc("scale/memory-bank/setup", source="geap")
get_doc("multimodal/function-calling", source="vertex-ai")list_sections
Просмотр структуры документации.
list_sections(source="geap")list_models
Краткий справочник по всем доступным AI-моделям (Gemini, Imagen, Veo, Claude и др.).
list_models()Источники документации
ID источника | Платформа | Страниц | Статус |
| Gemini Enterprise Agent Platform | 2300+ | Основной (текущий) |
| Vertex AI Generative AI | 1100+ | Устаревший (архив) |
Разделы GEAP
Agent Studio — Визуальный конструктор агентов
Agents → Build — Runtime, ADK, Agent Garden, RAG Engine
Agents → Scale — Сессии, Банк памяти, Выполнение кода
Agents → Govern — Политики, Agent Gateway, Model Armor
Agents → Optimize — Наблюдаемость, Оценка, Оповещения о качестве
Models — Gemini, Imagen, Veo, Lyria, Партнеры, Открытые модели
Notebooks — Учебные пособия Jupyter
Конфигурация
Переменные окружения для настройки:
Переменная | По умолчанию | Описание |
|
| Директория кэша |
|
| TTL кэша страниц (часы) |
|
| TTL кэша структуры (дни) |
|
| Источник документации по умолчанию |
|
| Тайм-аут HTTP (секунды) |
Разработка
# 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Архитектура
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/Лицензия
MIT — см. LICENSE.
Часть OpenGerwin MCP Servers
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
- FlicenseNot gradedqualityCmaintenanceAn MCP (Multi-Agent Conversation Protocol) Server that enables AI agents to interact with Google Docs via natural language, automatically generated using AG2's MCP builder.
- AlicenseNot gradedqualityCmaintenanceAn MCP server that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.12MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that provides indexed, searchable access to Anthropic Claude and Google Gemini documentation, with full-text search, page fetching, and section listing capabilities.
- AlicenseAqualityBmaintenanceAn MCP server that enables LLMs to search, fetch, and act on Google Workspace (Drive, Gmail, Docs, Sheets, etc.) with rich, one-call results and file deposits to disk, reducing context usage.3MIT
Related MCP Connectors
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Pocket Agent (aipocketagent.com) MCP server — read tools for personas, apps, and product info.
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/OpenGerwin/mcp-google-agent-platform-docs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server