Redbee MCP Server

Connect to Red Bee Media streaming services from MCP-compatible clients like Claude Desktop, or integrate via HTTP/SSE for web applications. This

Local serverstdioPython

What is the Redbee MCP MCP server?

Redbee MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Connect to Red Bee Media streaming services from MCP-compatible clients like Claude Desktop, or integrate via HTTP/SSE for web applications. This server provides 33 tools for authentication, content search, user management, purchases, and.

Setting it up

Installation goes through your MCP client rather than a global install: point it at redbee-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once Redbee MCP is connected, these are the calls the assistant has available:

  • Server — Sent Events**: For real-time updates
  • Requirements — The Requirements tool exposed by this server

Configuration and credentials

You will need 6 environment variables: REDBEE_CUSTOMER, REDBEE_BUSINESS_UNIT, REDBEE_EXPOSURE_BASE_URL, REDBEE_SESSION_TOKEN, REDBEE_DEVICE_ID, REDBEE_CONFIG_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Python 3.8+ - MCP SDK - aiohttp for HTTP requests - pydantic for data validation - FastAPI and uvicorn for HTTP mode

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the redbee mcp mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Redbee MCP's toolset — Server, Requirements — is a fair guide to whether it matches your workflow. It is maintained by Tamsi; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Redbee MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
ServerSent Events**: For real-time updates
RequirementsThe Requirements tool exposed by this server.

How to install the Redbee MCP MCP server

{
  "mcpServers": {
    "redbee-mcp": {
      "command": "uvx",
      "args": ["redbee-mcp", "--stdio"],
      "env": {
        "REDBEE_CUSTOMER": "CUSTOMER_NAME",
        "REDBEE_BUSINESS_UNIT": "BUSINESS_UNIT_NAME"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.8+ - MCP SDK - aiohttp for HTTP requests - pydantic for data validation - FastAPI and uvicorn for HTTP mode
VariableDescriptionRequired
REDBEE_CUSTOMERConfiguration value read at startup.Optional
REDBEE_BUSINESS_UNITConfiguration value read at startup.Optional
REDBEE_EXPOSURE_BASE_URLEndpoint or connection string the server talks to.Yes
REDBEE_SESSION_TOKENCredential the server authenticates with.Yes
REDBEE_DEVICE_IDConfiguration value read at startup.Optional
REDBEE_CONFIG_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Redbee MCP to Server.
  • Use Redbee MCP to Requirements.

Frequently asked questions

It connects Redbee MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Server, Requirements) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Redbee MCP directly.