jitsi-mcp-server
MCP server that enables AI agents to join Jitsi Meet rooms, send/receive chat, record meetings, and monitor participants using headless Chrome.
README
Jitsi MCP Server
MCP (Model Context Protocol) server for Jitsi Meet that allows AI agents to:
- Join/leave meetings - Connect to any Jitsi Meet room
- Read/write chat - Full bidirectional chat support
- Record meetings - Capture video/audio streams locally
- Get meeting state - Participants, recording status, etc.
Architecture
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ AI Agent │────▶│ MCP Server │────▶│ Jitsi Meet │
│ (Claude, etc) │ │ (this server) │ │ (browser) │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│
▼
┌─────────────────┐
│ Puppeteer │
│ (Chrome) │
└─────────────────┘
This server uses Puppeteer to control a headless Chrome browser that joins Jitsi meetings. The MCP interface exposes tools and resources for AI agents to interact with the meeting.
Prerequisites
- Node.js 18+
- Chrome/Chromium (installed automatically by Puppeteer)
Installation
cd jitsi-mcp-server
npm install
npm run build
Configuration
Copy .env.example to .env and configure:
cp .env.example .env
| Variable | Description | Default |
|---|---|---|
JITSI_SERVER_URL |
Jitsi Meet server URL | https://meet.jit.si |
JITSI_DISPLAY_NAME |
Bot display name | AI Assistant |
JITSI_JWT_APP_ID |
JWT app ID (for private servers) | - |
JITSI_JWT_SECRET |
JWT secret (for private servers) | - |
RECORDINGS_DIR |
Where to save recordings | ./recordings |
RECORDING_FORMAT |
Video format (webm/mp4) | webm |
PORT |
HTTP server port | 3000 |
HOST |
HTTP server host | 0.0.0.0 |
HEADLESS |
Run browser headless | true |
Usage
Stdio Transport (for Claude Desktop, etc.)
npm start
# or
node dist/index.js
Add to Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"jitsi": {
"command": "node",
"args": ["/path/to/jitsi-mcp-server/dist/index.js"],
"env": {
"JITSI_SERVER_URL": "https://meet.jit.si",
"JITSI_DISPLAY_NAME": "Claude Assistant"
}
}
}
}
HTTP/SSE Transport
npm run dev
# or for production
node dist/http-server.js
Connect via SSE at http://localhost:3000/sse
MCP Tools
| Tool | Description |
|---|---|
jitsi_join_meeting |
Join a Jitsi room |
jitsi_leave_meeting |
Leave current meeting |
jitsi_send_chat |
Send chat message |
jitsi_get_chat_history |
Get chat messages |
jitsi_get_participants |
List participants |
jitsi_get_meeting_state |
Get full meeting state |
jitsi_toggle_mute |
Mute/unmute microphone |
jitsi_toggle_video |
Enable/disable camera |
jitsi_start_recording |
Start screen recording |
jitsi_stop_recording |
Stop and save recording |
jitsi_take_screenshot |
Capture meeting screenshot |
MCP Resources
| URI | Description |
|---|---|
jitsi://meeting/state |
Current meeting state |
jitsi://meeting/participants |
Participant list |
jitsi://meeting/chat |
Chat history |
jitsi://meeting/screenshot |
Live screenshot |
REST API (HTTP mode only)
When running in HTTP mode, these endpoints are available:
# Join a meeting
POST /api/join
{"roomName": "my-room", "displayName": "Bot"}
# Leave meeting
POST /api/leave
# Send chat message
POST /api/chat
{"message": "Hello!"}
# Get chat history
GET /api/chat
# Get meeting state
GET /api/state
# Get participants
GET /api/participants
# Start recording
POST /api/recording/start
# Stop recording
POST /api/recording/stop
# Get screenshot
GET /api/screenshot
Example Agent Usage
// Using the MCP client
const response = await mcpClient.callTool('jitsi_join_meeting', {
roomName: 'daily-standup',
displayName: 'AI Scribe',
startMuted: true,
startWithVideoOff: true,
});
// Send a greeting
await mcpClient.callTool('jitsi_send_chat', {
message: 'Hello! I\'m here to take notes for this meeting.',
});
// Start recording
await mcpClient.callTool('jitsi_start_recording', {});
// ... meeting happens ...
// Get chat history for summarization
const chat = await mcpClient.callTool('jitsi_get_chat_history', {});
// Stop recording
await mcpClient.callTool('jitsi_stop_recording', {});
// Leave
await mcpClient.callTool('jitsi_leave_meeting', {});
Private Jitsi Servers
For self-hosted Jitsi with JWT authentication:
- Configure your Jitsi server for JWT auth
- Set
JITSI_JWT_APP_IDandJITSI_JWT_SECRETin.env - The server will automatically generate JWTs for joining meetings
Important Notes
Audio Recording
Audio recording captures remote participants' audio via WebRTC. For reliable audio capture:
- Set
HEADLESS=falsein your.envfile - The browser needs a real audio context to capture WebRTC streams
Jitsi Server Compatibility
- meet.jit.si: Works with anonymous users if a logged-in moderator starts the meeting first
- Self-hosted: Full anonymous access typically available
- Alternative servers: Tested with meet.ffmuc.net and others
Chat
The bot automatically enters a chat nickname when required by the Jitsi interface.
Limitations
- Headless Audio: Audio recording may not work reliably in headless mode
- Video Recording: Currently audio-only; video frames are not captured
- Private Messages: Only public chat is supported
Development
# Run in development mode with hot reload
npm run dev
# Run HTTP server in dev mode
npm run dev:http
# Build
npm run build
# Run tests
npm test
# Lint
npm run lint
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。