Embedded Api MCP Server

Digital Samba Embedded API MCP Server - Model Context Protocol server for Digital Samba's Embedded API

Remote serverstreamable-http

What is the Embedded Api MCP server?

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.

What Embedded Api does

Quick StartFeaturesSetup GuidesTools 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.

Tools it exposes

Once connected, the assistant can call these 14 tools directly:

  • 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

Installing the embedded api mcp server

The 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.

Configuration

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.

Where it fits

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.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 14 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Embedded Api.
  • Maintained by digitalsamba.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the embedded api mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
create-roomCreate a new room
update-roomUpdate room settings
delete-roomDelete a room
generate-tokenGenerate participant access token
get-default-room-settingsGet default settings
update-default-room-settingsUpdate default settings
list-roomsList all rooms
get-room-detailsGet room details
list-live-roomsList rooms with active sessions
list-live-participantsList all live participants
get-room-live-infoGet live session info for a room
list-sessionsList all sessions
get-session-summaryGet session details
list-session-participantsList session participants

How to install the Embedded Api MCP server

{
  "mcpServers": {
    "embedded-api": {
      "command": "npx",
      "args": ["-y", "npm"],
      "env": {
        "YOUR_DEVELOPER_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
YOUR_DEVELOPER_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Embedded Api to create-room.
  • Use Embedded Api to update-room.
  • Use Embedded Api to delete-room.

Frequently asked questions

It connects Embedded Api to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (create-room, update-room, delete-room, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Embedded Api directly.