bumi-digital-mcp

bumi-digital-mcp

MCP server for Bumi Digital that enables AI image, video, and audio generation and upscaling directly from MCP-compatible assistants like Claude Desktop and Cursor.

Category
Visit Server

README

Bumi Digital MCP Server

npm

Model Context Protocol (MCP) server for Bumi Digital — generate AI images, videos, audio, and upscale media directly from MCP-compatible AI assistants (Claude Desktop, ChatGPT, Cursor, Trae, and others).

This server is a thin wrapper over the Bumi Digital public REST API v1. All business logic (credits, refunds, storage, webhooks) is enforced by the API — nothing is duplicated here.

Features

  • 11 tools covering the full Bumi Digital API surface
  • Dual transport: stdio (local) and Streamable HTTP (remote/hosted)
  • Per-request auth in HTTP mode — one deployment serves many users, each with their own API key
  • Stateless HTTP — no session storage required, scales horizontally
  • Docker-ready — Dockerfile included for Coolify/VPS deployment

Tools

Tool Description
generate_image Generate images (text-to-image, image-to-image)
generate_video Generate videos (text-to-video, image-to-video, motion control, avatar, lipsync)
generate_audio Generate audio (music, speech/TTS, lipsync)
upscale_image Upscale images to higher resolution
upscale_video Upscale videos to higher resolution
list_models List available AI models by type
get_models_pricing List models with credit pricing and full input schemas
check_credits Check current credit balance
get_generation_status Poll status/result of an async generation
list_generations Generation history with filters and pagination
upload_file Upload image/video/audio (via source_url or base64) for use as generation input

Generation endpoints may return status: "completed" immediately or "processing" for async results — poll with get_generation_status until completed/failed. Credits are deducted upfront and refunded automatically on failure.

Getting an API Key

  1. Sign in to bumi.digital
  2. Go to Settings → API Keys
  3. Create a key — it starts with bd_

Usage

Option A: stdio (local MCP client)

Install instantly via npx — no cloning or building required. Add to your MCP client config (Claude Desktop, Cursor, Trae, etc.):

{
  "mcpServers": {
    "bumi-digital": {
      "command": "npx",
      "args": ["-y", "bumi-digital-mcp"],
      "env": { "BUMI_API_KEY": "bd_xxx" }
    }
  }
}

<details> <summary>Alternative: run from source</summary>

git clone https://github.com/ezmakeai/bumi-digital-mcp.git
cd bumi-digital-mcp
npm install
npm run build
{
  "mcpServers": {
    "bumi-digital": {
      "command": "node",
      "args": ["/path/to/bumi-digital-mcp/dist/index.js"],
      "env": { "BUMI_API_KEY": "bd_xxx" }
    }
  }
}

</details>

Option B: Remote MCP (hosted via HTTP)

Run the server:

node dist/index.js --http
# or: MCP_TRANSPORT=http node dist/index.js

Client config — no installation needed, just the URL:

{
  "mcpServers": {
    "bumi-digital": {
      "url": "https://mcp.bumi.digital/mcp",
      "headers": {
        "Authorization": "Bearer bd_your_api_key_here"
      }
    }
  }
}

Endpoints:

  • POST /mcp — MCP protocol (Streamable HTTP)
  • GET /health — health check, returns { "ok": true }

In HTTP mode the API key is resolved per request, in this priority order:

  1. ?api_key=bd_... query parameter (for clients without custom headers, e.g. ChatGPT)
  2. Authorization: Bearer bd_... header
  3. BUMI_API_KEY environment variable (fallback)

Option C: ChatGPT connector (Developer Mode)

ChatGPT connectors do not support custom headers — only OAuth or no authentication. Pass your API key as a query parameter instead:

  • Server URL: https://mcp.bumi.digital/mcp?api_key=bd_your_api_key_here
  • Authentication: None (no OAuth)

The server reads api_key from the query string first, then falls back to the Authorization header.

Note: keys in URLs may appear in server/proxy logs. Prefer the Authorization header (Option B) when your client supports it.

Configuration

Environment Variable Default Description
BUMI_API_KEY API key for stdio mode. In HTTP mode this is only a fallback — clients normally pass their own key via header or ?api_key=
BUMI_BASE_URL https://bumi.digital Bumi Digital API base URL. Set to http://localhost:3000 for local development
PORT 3100 HTTP listen port (HTTP mode only)
MCP_TRANSPORT Set to http to force HTTP mode without the --http flag

Self-Hosting (Optional)

If you operate your own Bumi Digital instance, this server can be self-hosted in HTTP mode. A Dockerfile is included — it builds the project and serves /mcp on PORT (default 3100). Point your MCP clients to https://your-domain/mcp with Authorization: Bearer bd_....

Development

npm install
npm run build        # compile TypeScript
npm run start        # HTTP mode on PORT (default 3100)
npm run start:stdio  # stdio mode (local MCP clients)

Requires Node.js >= 18.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured