Attendee MCP Server

Attendee MCP Server

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.

Category
访问服务器

Tools

create_meeting_bot

Create a bot to join a meeting and record/transcribe it

get_bot_status

Get the current status of a meeting bot

get_meeting_transcript

Get the transcript from a meeting bot

list_meeting_bots

List all active meeting bots

remove_meeting_bot

Remove a bot from a meeting

make_bot_speak

Make a bot speak text during a meeting using text-to-speech

send_chat_message

Send a chat message from the bot to the meeting

get_chat_messages

Get chat messages from the meeting

get_recording

Get the recording URL for a bot

send_image_to_meeting

Send an image to the meeting through the bot (Google Meet only)

send_video_to_meeting

Send a video to the meeting through the bot (Google Meet only)

delete_bot_data

Delete all data associated with a bot (recordings, transcripts, etc.)

README

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?

  1. You can send the bot to a meeting with "Send a bot to this meeting: <meeting_url>"
  2. You can have the bot say something with "Have the bot say <text>", and I will say it in the meeting.
  3. You can have the bot send a chat message with "Have the bot send a chat message: <message>"
  4. You can have the bot leave the meeting with "Have the bot leave the meeting"

To-Do List

  • [x] Bot joins meeting
  • [x] Bot leaves meeting
  • [x] Get bot status
  • [x] Send speech message (sends audio through the bot)
  • [x] Send chat message
  • [ ] Get list of active bots

🎯 What you can do with Claude using this MCP

Basic Bot Management

  1. "Send a bot to this meeting: <meeting_url>" - Creates and sends an Attendee bot to join any meeting (Zoom, Google Meet, Teams)
  2. "Get me the status of bot <bot_id>" - Returns current status, state, and transcription progress
  3. "List all my active bots" - Shows all currently active meeting bots
  4. "Remove bot <bot_id> from the meeting" - Makes the bot leave the meeting

Advanced Bot Features

  1. "Make bot <bot_id> say 'Hello everyone!'" - Text-to-speech functionality
  2. "Send chat message 'Hi there!' from bot <bot_id>" - Send chat messages through the bot
  3. "Show this image in the meeting: <image_url> using bot <bot_id>" - Display images (Google Meet only)
  4. "Play this video in the meeting: <video_url> using bot <bot_id>" - Play MP4 videos (Google Meet only)

Data Access

  1. "Get the transcript from bot <bot_id>" - Retrieve meeting transcripts
  2. "Get chat messages from bot <bot_id>" - Retrieve all chat messages from the meeting
  3. "Get the recording from bot <bot_id>" - Get download URL for meeting recording
  4. "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:

  1. Uses the web MCP to find the answer online.
  2. 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

# Clone your fork or the main repo
git clone https://github.com/rexposadas/attendee-mcp.git
cd attendee-mcp

# Install dependencies
npm install

# Build the TypeScript
npm run build

# Link for global use
npm link

⚙️ Configuration

Environment Variables

Set these environment variables for your Attendee server:

export MEETING_BOT_API_URL="http://localhost:8000"  # Your Attendee server URL
export MEETING_BOT_API_KEY="your-api-key-here"     # Your Attendee API key

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.

{
  "mcpServers": {
    "attendee": {
      "command": "node",
      "args": [
        "<path>/attendee-mcp/dist/index.js"
      ],
      "env": {
        "MEETING_BOT_API_URL": "<attendee-url-here>",
        "MEETING_BOT_API_KEY": "your-api-key-here"
      }
    }
  }
}

Replace /path/to/attendee-mcp with the actual path where you cloned the repository.

🏃‍♂️ Quick Start if you want to run Attendee Locally.

  1. Start your Attendee server:
    make build
    make up
    
  2. 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 meeting
  • get_bot_status - Check the current status of a meeting bot
  • list_meeting_bots - List all active meeting bots
  • remove_meeting_bot - Remove a bot from a meeting

Communication & Media

  • make_bot_speak - Make the bot speak using text-to-speech
  • send_chat_message - Send chat messages from the bot
  • send_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 transcript
  • get_chat_messages - Get chat messages from the meeting
  • get_recording - Get the recording download URL
  • delete_bot_data - Permanently delete all bot data

🐛 Troubleshooting

Common Issues

  1. "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 and MEETING_BOT_API_KEY environment variables
  2. 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
  3. "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

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature-name
  3. Make your changes and test them
  4. Commit your changes: git commit -m 'Add feature'
  5. Push to the branch: git push origin feature-name
  6. Submit a pull request

🔗 Related Projects


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.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选