# Character Forge (`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

```json
{
 "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`:

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

REST — `POST /api/call/character-forge`:

```bash
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: https://market.meshtool.ai/c/character-forge.json
- Catalog: https://market.meshtool.ai/api/capabilities · Manifest: https://market.meshtool.ai/.well-known/mcp.json · OpenAPI: https://market.meshtool.ai/openapi.json
