GenMagic MCP Server

MCP serverMedia

Genmagic lets your AI create text, images, speech, music, and video. It works with any AI model, and all of that generation runs on one shared credit balance. Once added, your AI can produce the media you ask for in whichever format fits the task.

Available today. Use it from your connected AI after setup.

After adding genmagic, tell your AI what you want made — a piece of writing, an image, a voice clip, a song, or a video — and it will generate it using your credit balance.

Then ask your AI: use GenMagic MCP Server to generate text

What your AI can do with it

  • Generate text
  • Generate images
  • Generate speech
  • Generate music
  • Generate video
  • Cover every format from a single credit balance

From the project's README

As published by yumaheymans/genmagic-mcp in README.md.

One Model Context Protocol server that lets any AI agent generate text, images, speech, music, and video, billed against a single prepaid credit balance.

GenMagic is one studio and one API for every generative AI model, in every medium. This repository is the connection guide and registry descriptor for its remote MCP server: point any MCP client at one URL, drop in your key, and your agent gets six generation tools that route to the best underlying model automatically.

  • Endpoint: https://genmagic.co/api/mcp
  • Transport: Streamable HTTP (stateless JSON-RPC)
  • Auth: Authorization: Bearer gm_live_... (create a key at https://genmagic.co/app/settings)
  • Hosted: nothing to install or run. It is a live remote server.
  • Registry: listed on the Official MCP Registry as io.github.yumaheymans/genmagic (see server.json).

Tools

ToolWhat it does
generate_textGenerate text, code, an SVG graphic, or a full web page (optional type).
generate_imageGenerate or edit an image; type=logo for a brand mark.
generate_speechText to speech, voiced verbatim.
generate_musicAn original music track from a description.
create_videoStart an async video job (returns a job id, charges nothing yet).
get_videoPoll a video job; charges once, on completion.

initialize, ping, and tools/list are open; tools/call requires your key. Every tool result self-describes its spend in the MCP _meta field (cost_cents, credits_remaining, and a rate object), so an agent paces itself and tracks its budget from the result it already has.

Connect

Create a key at https://genmagic.co/app/settings, then add the server to your client.

Claude Code

claude mcp add --transport http genmagic https://genmagic.co/api/mcp \
  --header "Authorization: Bearer gm_live_your_key"

Cursor, VS Code, Windsurf, and most clients

Add a genmagic entry to your MCP config (.cursor/mcp.json, .vscode/mcp.json, or the client's equivalent):

{
  "mcpServers": {
    "genmagic": {
      "url": "https://genmagic.co/api/mcp",
      "headers": { "Authorization": "Bearer gm_live_your_key" }
    }
  }
}

Claude Desktop

Add GenMagic as a custom connector in Settings → Connectors, using the URL https://genmagic.co/api/mcp and a header Authorization: Bearer gm_live_your_key.

Any JSON-RPC client (raw)

The server is plain JSON-RPC over HTTP, so you can drive it with curl:

# List the tools (no key required)
curl https://genmagic.co/api/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{ "jsonrpc": "2.0", "id": 1, "method": "tools/list" }'

# Generate an image (key required)
curl https://genmagic.co/api/mcp \
  -H "Authorization: Bearer gm_live_your_key" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0", "id": 2, "method": "tools/call",
    "params": {
      "name": "generate_image",
      "arguments": { "prompt": "a cobalt prism refracting into a spectrum, dark studio, 3D render", "size": "1024x1024" }
    }
  }'

How billing works

There is no separate agent meter. Every generation, from the studio, the REST API, or this MCP server, draws the underlying model's real provider cost from one prepaid USD balance (1 credit = 1 US cent). New accounts get a one-time $0.50 starter balance; top up in $5 to $100 increments, or subscribe for a renewing balance with a subscriber bonus and commercial-use rights. create_video and a still-rendering get_video poll charge nothing; the clip's cost lands on the poll that completes it. See https://genmagic.co/pricing.

On-brand generation

Turn on personalization once in the app (connect a website or LinkedIn) and every tool call comes out shaped by your brand's voice, audience, and colors, no prompt changes required. Visual tool results additionally report a brand_fit read-back so an agent can regenerate anything that drifted off-palette.

Links

License

MIT. See LICENSE. This repository is connection documentation and the registry descriptor; the GenMagic service itself is operated at genmagic.co.

Tools it offers (6)

What this server listed when ahel dialed its public endpoint in Sep 2026, with no key and no account of yours. The names are the server’s own.

  • generate_text
  • generate_image
  • generate_speech
  • generate_music
  • create_video
  • get_video

Signals

Last commit
Sep 2026
Advanced
Delivery
genmagic MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
Catalog kind
mcp-server
Gateway key
io-github-yumaheymans-genmagic
Source
github.com/yumaheymans/genmagic-mcp
Hosted endpoint
https://genmagic.co/api/mcp