Open-source MCP (Model Context Protocol) servers that give AI agents superpowers.
Each server is a standalone package — install only what you need.
| Server | Description | Status | Install |
|---|---|---|---|
| 🔍 Google Agent Platform Docs | Search & read Google AI platform documentation (GEAP + Vertex AI). 3400+ pages. | ✅ Ready | pip install mcp-google-agent-platform-docs |
| 🚧 More coming soon | Bitrix24, WordPress, and others | Planned | — |
Model Context Protocol is an open standard that lets AI assistants (Claude, Cursor, VS Code Copilot, etc.) connect to external tools and data sources.
Instead of hallucinating API details, your AI can look up the real documentation in real-time.
┌─────────────────┐ MCP ┌──────────────────────┐
│ AI Assistant │◄────────────►│ MCP Server │
│ (Claude, etc.) │ (stdio) │ (your tools + data) │
└─────────────────┘ └──────────────────────┘
pip install mcp-google-agent-platform-docsClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"google-agent-platform-docs": {
"command": "mcp-google-agent-platform-docs"
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"google-agent-platform-docs": {
"command": "mcp-google-agent-platform-docs",
"transport": "stdio"
}
}
}VS Code
Add to .vscode/mcp.json:
{
"mcpServers": {
"google-agent-platform-docs": {
"command": "mcp-google-agent-platform-docs",
"transport": "stdio"
}
}
}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"
]
}
}
}Repo: OpenGerwin/mcp-google-agent-platform-docs PyPI:
pip install mcp-google-agent-platform-docs
MCP server providing real-time access to Google's AI platform documentation:
- Gemini Enterprise Agent Platform (GEAP) — 2300+ pages (current platform)
- Vertex AI Generative AI — 1100+ pages (legacy archive)
Tools:
| Tool | Description |
|---|---|
search_docs |
Full-text search across documentation |
get_doc |
Read any documentation page |
list_sections |
Browse documentation structure |
list_models |
Reference of all available AI models |
We welcome contributions! Whether it's:
- 🐛 Bug reports and fixes
- ✨ New MCP server ideas
- 📖 Documentation improvements
Each server has its own repo — please open issues and PRs there.
For general questions or ideas about new servers, use Discussions in this repo.
All servers are released under the MIT License.
OpenGerwin — Open-source tools for AI agents