moji-mcp-worker
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., "@moji-mcp-workerBuild a moji of two people hi-fiving"
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.
moji-mcp-worker
Remote MCP server for AudienseMoji. Lets any MCP client
(Claude Desktop, Claude Code, Cursor, etc.) compose a Moji illustration and get back a valid,
ready-to-import .moji.json file — without ever guessing an asset id.
Same architecture pattern as the existing Titan MCP (mcp-remote-worker.titands.workers.dev):
a stateless Cloudflare Worker exposing Streamable HTTP MCP, no server-side LLM call. The
composing intelligence is the host model (Claude/Cursor); this worker only supplies the real
asset catalog and validates/serializes the result.
Tools
moji_list_catalog({ category? })— with no args, returns category counts + layer shape rules + defaults. Withcategory(heads,torsos,decorations,accessories,expressions,brand,snaps,presets), returns every real asset id in that bucket.moji_build({ name?, aspectRatio?, colors?, background?, layers })— validates each layer against the live catalog and returns:{ valid: false, errors: [...] }if something doesn't match the catalog (unknown assetId, missing required field for that category, etc.) — fix and retry.{ valid: true, mojiJson, downloadFilename, importInstructions }—mojiJsonis the exact.moji.jsonenvelope the Moji app already knows how to read (format: "audiensemoji").
Related MCP server: ui-design-to-code-mcp
Where the catalog comes from
env.MOJI_CATALOG_URL (default https://audiensemoji.vercel.app/moji-catalog.json) is a static
JSON file generated straight from AudienseMoji/src/illustrations/assets.tsx by
AudienseMoji/scripts/export-moji-catalog.mjs. Re-run that script (and redeploy Moji) whenever
assets change — this worker never hand-duplicates ids, so it can't drift.
Develop
npm install
npm run dev # wrangler dev on http://localhost:8788/mcp
npm run typecheckTest locally with the MCP Inspector:
npx @modelcontextprotocol/inspector@latest
# connect to http://localhost:8788/mcpDeploy
npx wrangler login # one-time
npm run deployWrangler prints the live URL, e.g. https://moji-mcp-worker.<account>.workers.dev/mcp.
Connect a client
Cursor (.cursor/mcp.json, same shape as the titands entry):
{
"mcpServers": {
"moji": { "url": "https://moji-mcp-worker.<account>.workers.dev/mcp" }
}
}Claude Desktop / Claude Code (via the mcp-remote local proxy, since not every client
speaks remote MCP natively yet):
{
"mcpServers": {
"moji": {
"command": "npx",
"args": ["mcp-remote", "https://moji-mcp-worker.<account>.workers.dev/mcp"]
}
}
}Using it end to end
Ask the model: "Use the moji tool to build an illustration of two people doing a hi-5, with a speech bubble that says 'Nice work!'."
It calls
moji_list_catalogto find real preset/decoration ids, thenmoji_buildwith alayersarray.Save the returned
mojiJsonto<downloadFilename>.In audiensemoji.vercel.app → My Creations → Import Moji file → pick that file. It opens as an editable draft; hit Save to keep it.
Roadmap (not implemented yet)
Phase 2:
moji_publish_linkstores the built JSON in KV/R2 and returns anhttps://audiensemoji.vercel.app/import?src=<id>link that opens the draft directly, skipping the manual save/import step. Needs a small route addition in the Moji app.Phase 3: direct-to-gallery publish via a paired Firebase session (no manual step at all) — bigger scope, needs an auth/pairing flow between the MCP client and the user's Moji account.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/angelcreative/moji-mcp-worker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server