AI Manga & Anime Generator - Mangii MCP
Pricing
Pay per usage
AI Manga & Anime Generator - Mangii MCP
Create manga and anime art from text. 24 styles, multi-panel stories, BYOK. Thin HTTP client — no GPU, no per-panel Apify billing. Users supply a Mangii API key; generation credits are billed by Mangii.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
AAAI Studio LLC
Maintained by CommunityActor stats
1
Bookmarked
1
Total users
0
Monthly active users
23 days ago
Last modified
Categories
Share
AI Manga & Anime Generator - Mangii MCP (Apify Actor)
Create manga and anime art with an AI manga generator. Type what you imagine — Mangii turns text into panels in a chosen style. No drawing skills needed.
Bring-your-own-key (BYOK) Apify Actor that calls the Mangii Headless API to create a manga story and generate the first panel.
This is not an OpenRouter model or a GPU image wrapper. It is a thin HTTP client: you paste your Mangii API key, and Mangii bills your account for generation credits. MCP tools live at https://mcp.mangii.ai/mcp (manga.create_story, manga.continue_story, manga.list_styles, …).
Requirements
- A Mangii API key (
mangii_sk_…) — mint at Console → Keys - API credits — buy at Console → Billing
Pricing
- Apify: Free (no per-panel charge on Apify)
- Mangii: Standard 1 / HD 2 / Ultra 5 API credits per generation (billed by Mangii)
Input
| Field | Required | Default | Description |
|---|---|---|---|
mangiiApiToken | yes | — | Secret Mangii API key |
prompt | yes | — | First-panel scene prompt |
styleId | yes | — | Mangii style identifier |
quality | no | standard | standard, hd, or ultra |
asyncWait | no | true | Wait for sync 200 result; false returns 202 job_id |
API host
Default: https://api.mangii.ai
Override with MANGII_API_BASE (no trailing slash). Fallback Functions URL: https://us-central1-mangii-app.cloudfunctions.net/headlessApi.
Local development
cd scripts/apify-mangii-actornpm installnpm test
Dry run with a real key (not for CI):
MANGII_API_TOKEN=mangii_sk_... node -e "import { createStory, resolveApiBase } from './src/createStory.js';const result = await createStory({apiBase: resolveApiBase(),token: process.env.MANGII_API_TOKEN,prompt: 'A hero stands on a rooftop at sunset',styleId: 'shonen',});console.log(result);"
Publishing
Do not publish this Actor to the Apify Console from CI. Publication is a manual step when ready.