AI Manga & Anime Generator - Mangii MCP avatar

AI Manga & Anime Generator - Mangii MCP

Pricing

Pay per usage

Go to Apify Store
AI Manga & Anime Generator - Mangii MCP

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

AAAI Studio LLC

Maintained by Community

Actor stats

1

Bookmarked

1

Total users

0

Monthly active users

23 days ago

Last modified

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

Pricing

  • Apify: Free (no per-panel charge on Apify)
  • Mangii: Standard 1 / HD 2 / Ultra 5 API credits per generation (billed by Mangii)

Input

FieldRequiredDefaultDescription
mangiiApiTokenyesSecret Mangii API key
promptyesFirst-panel scene prompt
styleIdyesMangii style identifier
qualitynostandardstandard, hd, or ultra
asyncWaitnotrueWait 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-actor
npm install
npm 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.