Advocu MCP Server
Enables Google Developer Experts, Docker Captains, and Microsoft MVPs to submit professional activity reports via conversational AI, with support for multiple programs and rate-limited API access.
README
Advocu MCP Server
A unified Model Context Protocol (MCP) server that enables Google Developer Experts (GDEs), Docker Captains, and Microsoft MVPs to report their professional activities through conversational AI interfaces.
Built with FastMCP for seamless integration with Claude, Gemini, and other AI agents.
Features
- šÆ Multi-Program Support: Single server for GDE, Docker Captains, and MVP programs
- š FastMCP-Powered: Simple, Pythonic MCP server with automatic schema generation
- š Rate Limiting: Built-in rate limiting (30 req/min) to respect API limits
- ā Type-Safe: Pydantic models for robust data validation
- š¤ Conversational: Natural language activity submission via AI agents
- š Activity Management: Submit, list, and track activities across programs
ā ļø Important: Draft-Only Workflow
The Advocu API only allows creating DRAFTS via API. After creating an activity through the MCP server, you need to:
- ā Create draft via MCP/Claude (automated)
- š Go to the portal (manual step)
- Docker Captains: https://hub.docker.com/
- GDE: https://developers.google.com/community/experts
- š Review the draft (verify data is correct)
- ā Click "Submit" to publish (manual step)
This is a limitation of the Advocu API, not the MCP server. All activities will be created as drafts that require manual publishing.
Supported Activities
Docker Captains
- š¤ Public speaking (conferences, meetups)
- š Resources (articles, videos, tutorials)
- š Events (workshops, hackathons)
- š¬ Feedback sessions
- š¢ Amplification (social media, community)
Google Developer Experts (GDE)
- š¤ Public speaking
- š Content creation
- š Workshops
- šØāš« Mentoring
- š Product feedback
- š¤ Googler interactions
- š Success stories
Microsoft MVPs
(Coming soon - different API endpoint)
Quick Start
1. Prerequisites
- Python 3.10 or higher
- Access token from your program (GDE and/or Docker Captains)
2. Installation
# Clone the repository
git clone https://github.com/yourusername/advocu-mcp-server.git
cd advocu-mcp-server
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -e .
3. Configuration
Create a .env file with your tokens:
cp .env.example .env
Edit .env and add your tokens:
# For GDEs
GDE_ACCESS_TOKEN=your_gde_token_here
# For Docker Captains
DOCKER_ACCESS_TOKEN=your_docker_token_here
How to Get Your Token
For Google Developer Experts:
- Visit https://devlibrary.advocu.com/
- Go to Settings ā Integrations ā API
- Click "Generate your token"
- Copy the token
For Docker Captains:
- Visit the Docker Captains portal
- Go to Settings ā Integrations ā API
- Click "Generate your token"
- Copy the token
4a. Configure Claude Desktop (Optional)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):
{
"mcpServers": {
"advocu": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "/path/to/advocu-mcp-server",
"env": {
"PYTHONPATH": "/path/to/advocu-mcp-server"
}
}
}
}
4b. Configure Claude Code CLI (Recommended)
The project already includes a .mcp.json file for Claude Code CLI. Just verify it's configured:
# Check server status
claude mcp list
# You should see:
# advocu: .../venv/bin/python -m src.server - ā Connected
If you need to reconfigure, edit .mcp.json:
{
"mcpServers": {
"advocu": {
"type": "stdio",
"command": "/home/falcon/advocu-mcp-server/venv/bin/python",
"args": ["-m", "src.server"],
"cwd": "/home/falcon/advocu-mcp-server",
"env": {
"PYTHONPATH": "/home/falcon/advocu-mcp-server"
}
}
}
}
Note: Update the paths to match your installation directory.
5. Usage
Start chatting naturally with Claude (Desktop or CLI):
Examples:
"I gave a talk about Docker networking at KubeCon on June 5th, 2026 with 500 attendees"
"I published a tutorial on Cloud Run yesterday with 3000 views"
"I organized a workshop on Kubernetes last week with 30 people for 4 hours"
Claude will automatically use the appropriate MCP tools to submit your activities.
Available Tools
Docker Captains Tools
submit_docker_public_speaking- Submit speaking engagementssubmit_docker_resource- Submit articles, videos, tutorialssubmit_docker_event- Submit organized eventssubmit_docker_feedback- Submit feedback sessionssubmit_docker_amplification- Submit social media amplification
GDE Tools
submit_gde_public_speaking- Submit speaking engagementssubmit_gde_content- Submit content creationsubmit_gde_workshop- Submit workshopssubmit_gde_mentoring- Submit mentoring sessionssubmit_gde_product_feedback- Submit product feedbacksubmit_gde_googler_interaction- Submit Googler interactionssubmit_gde_story- Submit success stories
Utility Tools
list_recent_activities- List recent activities
Development
Project Structure
advocu-mcp-server/
āāā src/
ā āāā __init__.py
ā āāā server.py # Main FastMCP server
ā āāā config.py # Configuration management
ā āāā clients/
ā ā āāā __init__.py
ā ā āāā advocu.py # Advocu API client
ā āāā models/
ā ā āāā __init__.py
ā ā āāā base.py # Base models
ā ā āāā docker.py # Docker Captains models
ā ā āāā gde.py # GDE models
ā āāā utils/
ā āāā __init__.py
ā āāā rate_limiter.py # Rate limiting
āāā tests/ # Tests (coming soon)
āāā pyproject.toml # Project metadata
āāā .env.example # Environment template
āāā README.md # This file
Running Tests
pytest
Code Quality
# Format code
ruff format .
# Lint code
ruff check .
API Reference
Advocu API
Base URLs:
- GDE:
https://api.advocu.com/personal-api/v1/gde - Docker Captains:
https://api.advocu.com/personal-api/v1/dockercaptains
Authentication:
Authorization: Bearer {access-token}
Content-Type: application/json
Rate Limits:
- 30 requests per minute per user
- Returns HTTP 429 if exceeded
Troubleshooting
Authentication Failed
Error: Authentication failed. Please check your access token.
Solution:
- Verify your token in
.envis correct - Check if the token has expired
- Generate a new token from the program portal
Rate Limit Exceeded
Error: Rate limit exceeded. Please wait before making more requests.
Solution:
- The server has built-in rate limiting
- Wait ~1 minute before making more requests
- The rate limiter automatically handles this
Program Not Configured
Error: No access token configured for {program}
Solution:
- Add the appropriate token to
.env - Restart the MCP server
- Verify the token variable name matches
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License - see LICENSE file for details
Support
- Issues: https://github.com/yourusername/advocu-mcp-server/issues
- Documentation: https://github.com/yourusername/advocu-mcp-server/wiki
Acknowledgments
- Built with FastMCP by Prefect
- Powered by Advocu API
Roadmap
- [ ] Microsoft MVP API integration
- [ ] Activity templates and suggestions
- [ ] Batch activity submission
- [ ] Activity analytics and insights
- [ ] Multi-user support
- [ ] Web dashboard
- [ ] Docker container for easy deployment
Made with ā¤ļø for the developer community
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.