Images
Image generation, the daily image and its archive
Calling it
This is your own data, so a call has to say who you are. Make a token at /token and send it as a header.
curl -H "Authorization: Bearer $MU_TOKEN" \ https://mu-mcp.yvangodard.me/api/v1/images/list
Methods
15 credits
POST /api/v1/images/generateGenerate an image from a text prompt and return its URL
| Argument | Type | Description |
|---|---|---|
prompt * | string | What the image should depict |
curl -X POST \
-H "Authorization: Bearer $MU_TOKEN" \
-H "Content-Type: application/json" \
-d '{"prompt":"prompt"}' \
https://mu-mcp.yvangodard.me/api/v1/images/generateGET /api/v1/images/searchSearch the public image library by description and get URLs to reuse. Cheaper than generating: look here first
| Argument | Type | Description |
|---|---|---|
query * | string | What the image should show, in words |
limit | number | Max results (default 20) |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/images/search?query=query"
The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


