Digital Samba Embedded API MCP Server - Model Context Protocol server for Digital Samba's Embedded API
Embedded api mcp server connects Embedded Api to AI assistants that speak the Model Context Protocol. Digital Samba Embedded API MCP Server - Model Context Protocol server for Digital Samba's Embedded API.
Quick Start • Features • Setup Guides • Tools Reference
The Digital Samba Embedded MCP Server lets you manage your video conferencing platform using natural language through AI assistants like Claude and ChatGPT. Create rooms, manage recordings, view analytics, and control live sessions—just by asking.
Once connected, the assistant can call these 14 tools directly:
create-room — Create a new roomupdate-room — Update room settingsdelete-room — Delete a roomgenerate-token — Generate participant access tokenget-default-room-settings — Get default settingsupdate-default-room-settings — Update default settingslist-rooms — List all roomsget-room-details — Get room detailslist-live-rooms — List rooms with active sessionslist-live-participants — List all live participantsget-room-live-info — Get live session info for a roomlist-sessions — List all sessionsget-session-summary — Get session detailslist-session-participants — List session participantsThe server is distributed via npm as npm, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply one environment variable: YOUR_DEVELOPER_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.
Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Embedded Api sits in that group, and the shape of its toolset — create-room, update-room, delete-room among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| create-room | Create a new room |
| update-room | Update room settings |
| delete-room | Delete a room |
| generate-token | Generate participant access token |
| get-default-room-settings | Get default settings |
| update-default-room-settings | Update default settings |
| list-rooms | List all rooms |
| get-room-details | Get room details |
| list-live-rooms | List rooms with active sessions |
| list-live-participants | List all live participants |
| get-room-live-info | Get live session info for a room |
| list-sessions | List all sessions |
| get-session-summary | Get session details |
| list-session-participants | List session participants |
{
"mcpServers": {
"embedded-api": {
"command": "npx",
"args": ["-y", "npm"],
"env": {
"YOUR_DEVELOPER_KEY": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| YOUR_DEVELOPER_KEY | Credential the server authenticates with. | Yes |
A knowledge graph your assistant keeps between sessions — entities, relations and observations that persist.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
A structured scratchpad for hard problems — stepwise reasoning with revisions, branches and visible logic.
Symbol-level code navigation, refactoring and memory for coding agents — the IDE brain your assistant has been missing.
Chat with your second brain — search, read and write vault notes through the Local REST API.