Mentioned as a companion MCP that can be combined with the Attendee MCP for workflows where Brave Search provides information that the Attendee bot can then relay in meetings.
Enables sending bots to Google Meet meetings with support for text-to-speech, chat messaging, displaying images, and playing videos in the meeting.
Allows creating and sending meeting bots to join Zoom meetings, with capabilities for text-to-speech, sending chat messages, and retrieving meeting transcripts.
Attendee MCP Server
A Model Context Protocol (MCP) server for managing Attendee meeting bots. This server allows you to create, manage, and retrieve transcripts from meeting bots through Claude Desktop.
What can you do with this MCP?
- You can send the bot to a meeting with "Send a bot to this meeting: "
- You can have the bot say something with "Have the bot say ", and I will say it in the meeting.
- You can have the bot send a chat message with "Have the bot send a chat message: "
- You can have the bot leave the meeting with "Have the bot leave the meeting"
To-Do List
- Bot joins meeting
- Bot leaves meeting
- Get bot status
- Send speech message (sends audio through the bot)
- Send chat message
- Get list of active bots
🎯 What you can do with Claude using this MCP
Basic Bot Management
- "Send a bot to this meeting:
<meeting_url>
" - Creates and sends an Attendee bot to join any meeting (Zoom, Google Meet, Teams) - "Get me the status of bot
<bot_id>
" - Returns current status, state, and transcription progress - "List all my active bots" - Shows all currently active meeting bots
- "Remove bot
<bot_id>
from the meeting" - Makes the bot leave the meeting
Advanced Bot Features
- "Make bot
<bot_id>
say 'Hello everyone!'" - Text-to-speech functionality - "Send chat message 'Hi there!' from bot
<bot_id>
" - Send chat messages through the bot - "Show this image in the meeting:
<image_url>
using bot<bot_id>
" - Display images (Google Meet only) - "Play this video in the meeting:
<video_url>
using bot<bot_id>
" - Play MP4 videos (Google Meet only)
Data Access
- "Get the transcript from bot
<bot_id>
" - Retrieve meeting transcripts - "Get chat messages from bot
<bot_id>
" - Retrieve all chat messages from the meeting - "Get the recording from bot
<bot_id>
" - Get download URL for meeting recording - "Delete all data for bot
<bot_id>
" - Permanently delete recordings, transcripts, etc.
Combining MCPs
Combining MCPs leads to powerful workflows. For example, I use the Brave Search MCP alongside the Attendee MCP. When I ask Claude, “Who won the last Roland Garros tournament?”, it:
- Uses the web MCP to find the answer online.
- Pipes the result to the Attendee bot, which speaks the answer back to me
🚀 Installation
We will use Claude as an example, but you can use any tool that works with MCPs.
Clone the repository
⚙️ Configuration
Environment Variables
Set these environment variables for your Attendee server:
Add these to your shell profile (~/.zshrc
, ~/.bashrc
, etc.) to make them permanent.
Claude Desktop Configuration
Update your Claude Desktop configuration file at:
~/Library/Application Support/Claude/claude_desktop_config.json
. after you make the changes, restart Claude
Adjust the mcpServers
section to include the Attendee MCP server. Use the direct path for now since that's proving to be the most reliable.
Replace /path/to/attendee-mcp
with the actual path where you cloned the repository.
🏃♂️ Quick Start if you want to run Attendee Locally.
- Start your Attendee server:
- Test in Claude Desktop:
- Ask Claude: "What MCP tools are available?"
🎯 Usage Examples
Once configured, you can use natural language commands in Claude Desktop:
Creating Meeting Bots
- "Create a meeting bot for this Zoom: https://zoom.us/j/123456789"
- "Send a bot to this Google Meet: https://meet.google.com/abc-defg-hij"
- "Join this Teams meeting with a bot: https://teams.microsoft.com/..."
Managing Bots
- "What's the status of bot bot_abc123?"
- "Show me all my active bots"
- "List all meeting bots"
- "Remove bot bot_abc123 from the meeting"
🔧 Available MCP Tools
This server provides the following tools:
Core Bot Management
create_meeting_bot
- Create a bot to join and record a meetingget_bot_status
- Check the current status of a meeting botlist_meeting_bots
- List all active meeting botsremove_meeting_bot
- Remove a bot from a meeting
Communication & Media
make_bot_speak
- Make the bot speak using text-to-speechsend_chat_message
- Send chat messages from the botsend_image_to_meeting
- Display images through the bot (Google Meet only)send_video_to_meeting
- Play videos through the bot (Google Meet only)
Data Retrieval
get_meeting_transcript
- Retrieve the meeting transcriptget_chat_messages
- Get chat messages from the meetingget_recording
- Get the recording download URLdelete_bot_data
- Permanently delete all bot data
🐛 Troubleshooting
Common Issues
- "Network error" or API connection issues:
- Ensure your Attendee server is running on the configured URL
- Check that your API key is correct
- Verify the
MEETING_BOT_API_URL
andMEETING_BOT_API_KEY
environment variables
- MCP server not appearing in Claude Desktop:
- Restart Claude Desktop completely after config changes
- Check the Claude Desktop config file syntax is valid JSON
- Look at Claude Desktop logs for error messages
- "Method not allowed" errors:
- Some API endpoints might not be fully implemented in your Attendee server
- Check your Attendee server logs for more details
📄 License
MIT License - see LICENSE file for details.
🤝 Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature-name
- Make your changes and test them
- Commit your changes:
git commit -m 'Add feature'
- Push to the branch:
git push origin feature-name
- Submit a pull request
🔗 Related Projects
- Attendee - The main meeting bot service
- Model Context Protocol - The MCP specification and SDK
Note: This MCP server requires a running Attendee backend service. Make sure you have the Attendee server set up and running before using this MCP server.
You must be authenticated.
Tools
A Model Context Protocol server that allows users to create and manage meeting bots capable of joining video calls, speaking, sending chat messages, and retrieving meeting transcripts.
Related MCP Servers
- -securityFlicense-qualityA versatile Model Context Protocol server that enables AI assistants to manage calendars, track tasks, handle emails, search the web, and control smart home devices.Last updated -2Python
- -securityAlicense-qualityA Model Context Protocol server that enables AI assistants to manage meeting data, including creating meeting bots, searching transcripts, and organizing calendar events.Last updated -15TypeScriptMIT License
- -security-license-qualityA Model Context Protocol server that bridges Microsoft Teams and MCP-compatible clients, enabling chat integration, message handling, and advanced search capabilities without REST API endpoints.Last updated -Python
- -securityFlicense-qualityA Model Context Protocol server that bridges Microsoft Teams with MCP-compatible clients (LLMs, agentic frameworks, CLI), enabling chat integration, message search, and event streaming without traditional REST API endpoints.Last updated -Python