hedra-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@hedra-mcp-serverWhat video models are available and how much would a 5-second clip cost?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
hedra-mcp-server
An MCP (Model Context Protocol) server for the Hedra v3 API — browse Hedra's model catalog (Seedance, Veo, Kling, GPT Image, Hedra Avatar, ElevenLabs, and more) and submit, poll, and manage generation jobs, all from an MCP client like Claude.
Built against Hedra's public OpenAPI spec (https://www.hedra.com/docs/openapi-v3.json) but not tested against the live API — the environment that built this had no network access to api.hedra.com. Test it against your real key before relying on it (see "Try it" below).
What it does
14 tools across 4 areas:
Models — hedra_list_models, hedra_get_model, hedra_get_model_input_schema, hedra_list_model_voices, hedra_estimate_cost
Jobs — hedra_submit_job, hedra_get_job, hedra_get_job_status, hedra_wait_for_job, hedra_list_jobs, hedra_list_model_jobs
Files — hedra_upload_file (from a local path, a remote URL, or inline base64)
Billing — hedra_get_balance, hedra_get_usage
Not covered (can be added later if you need them): webhook management, log drains, API key rotation. These are account-admin operations rather than day-to-day generation workflow, so they were left out to keep the initial tool surface focused.
Related MCP server: fal.ai MCP Server
Setup
Get a Hedra API key. You need a paid Hedra plan. Go to https://www.hedra.com/develop/api-keys, generate a key (format
<key_id>:<secret>), and fund the API wallet at https://www.hedra.com/develop/billing — it starts at $0.00 and is separate from Hedra Studio credits.Install dependencies and build:
npm install npm run buildSet your API key:
export HEDRA_API_KEY="your_key_id:your_secret"
Try it locally (stdio)
This is the easiest way to test — no deployment needed. Works with Claude Code, Claude Desktop, or any MCP client that can launch a local process.
npm startClaude Code / Claude Desktop config (add to your MCP servers config):
{
"mcpServers": {
"hedra": {
"command": "node",
"args": ["/absolute/path/to/hedra-mcp-server/dist/index.js"],
"env": { "HEDRA_API_KEY": "your_key_id:your_secret" }
}
}
}Sanity-check before anything else
Once connected, ask your MCP client to call hedra_get_balance. If that returns your real balance, auth is wired correctly. Then try hedra_list_models with modality: "VIDEO" to confirm the catalog loads.
Deploy remotely (for Claude.ai as a custom connector)
Claude.ai's web/mobile app needs a live HTTPS endpoint — it can't launch a local process. Deploy this server somewhere with a public URL, then add it as a custom connector.
Deploy to any Node host (Fly.io, Render, Railway, a VPS, etc.). Set the environment variables:
HEDRA_API_KEY=your_key_id:your_secretTRANSPORT=httpPORT=3000(or whatever your host expects)
Start command:
npm run build && npm run start:httpVerify it's up:
curl https://your-deployed-host/healthshould return{"status":"ok","server":"hedra-mcp-server"}.Add it in Claude.ai: Settings → Connectors → Add custom connector → enter
https://your-deployed-host/mcpas the URL.
⚠️ Security note: this server has no built-in authentication on the /mcp endpoint beyond the Hedra key baked into its environment — anyone who can reach the URL can spend your Hedra balance. Put it behind your host's access controls (IP allowlist, a reverse-proxy auth layer, etc.) if it's reachable from the open internet, especially since it's tied to a real prepaid wallet.
Typical workflow
1. hedra_list_models(modality="VIDEO") → find seedance-20's id
2. hedra_get_model_input_schema("seedance-20") → see required fields, enums
3. hedra_upload_file(file_path="./start.jpg") → get a handle url (if using image-to-video)
4. hedra_estimate_cost("seedance-20", {...}) → confirm price before spending
5. hedra_submit_job("seedance-20", {...}) → returns job_id
6. hedra_wait_for_job(job_id) → blocks until done, returns outputs[].urlProject structure
src/
index.ts # entry point, transport selection (stdio/http)
constants.ts # timeouts, page sizes, base URL
types.ts # TS types mirroring Hedra's API shapes + HedraApiError
services/
hedra-client.ts # typed fetch wrapper: auth, requests, pagination, uploads
format.ts # error formatting, JSON truncation, tool response helpers
schemas/
common.ts # shared Zod fragments (pagination, media refs, ids)
tools/
models.ts # catalog + schema + cost estimate tools
jobs.ts # submit/get/status/wait/list tools
files.ts # upload tool
billing.ts # balance/usage tools
test/
smoke.mjs # connects via stdio, lists tools, sanity-checks error handlingDevelopment
npm run dev # tsx watch mode against src/index.ts (stdio)
npm run build # tsc -> dist/
node test/smoke.mjs # after building: verify tool registration + error handlingMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceProvides AI assistants with access to Civitai's collection of AI models, enabling users to browse, search, and discover AI models through MCP-compatible AI assistants.1412MIT
- Alicense-qualityDmaintenanceEnables interaction with fal.ai AI models through MCP, supporting model discovery, content generation, queue management, and file uploads to the fal.ai platform.MIT
- AlicenseAqualityDmaintenanceEnables interaction with Arcanna's AI use cases through MCP, supporting job management, event processing, feedback, and health monitoring.4Apache 2.0

Anam MCP Serverofficial
AlicenseBqualityCmaintenanceEnables managing AI personas, avatars, voices, and sessions from any MCP client, for integration with Anam AI.5430MIT
Related MCP Connectors
Create, browse, remix, collaborate on, and run durable AI workflow nodes from MCP hosts.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/HemanthDonga/hedra-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server