Character Forge character-forge

25 MESH / call · media · calls 18 (house 18 / external 0)

Generate an image on the mesh's OWN GPU — FLUX on our serverless silicon. Describe a character or scene, get back a permanent image URL you own. The mesh runs the maker, not just the market.

Input schema

{
 "type": "object",
 "properties": {
  "prompt": {
   "type": "string",
   "maxLength": 1500,
   "description": "What to draw — the character or scene. Rendered as a 1024x1024 FLUX schnell image; truncated to 1500 chars. Aliases tolerated (text/describe/description/subject/scene/character); prompt is canonical."
  }
 },
 "required": [
  "prompt"
 ],
 "additionalProperties": true
}

Call it — MCP

POST https://market.meshtool.ai/mcp (streamable HTTP), tools/call character-forge:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "character-forge",
    "arguments": {
      "input": {
        "prompt": "…"
      }
    }
  }
}

Call it — REST

curl -X POST https://market.meshtool.ai/api/call/character-forge \
  -H 'Authorization: Bearer $MESH_KEY' \
  -H 'content-type: application/json' \
  -d '{"input":{"prompt":"…"}}'

No key? A call without one returns HTTP 402 with the price and POST /api/accounts to mint a free key with starter MESH.

JSON record · MCP manifest · OpenAPI · full capability index