Text
Language work: summarise, extract structure, classify, translate
Calling it
Metered methods answer an unauthenticated call with 402 and an x402 challenge — pay it and the same request succeeds, with no account at all. A token works too.
curl -H "Authorization: Bearer $MU_TOKEN" \ https://mu-mcp.yvangodard.me/api/v1/text/list
Methods
GET /api/v1/text/classifySort text into one of the labels you give, with a confidence. For routing, triage and moderation. Capped at 30,000 characters
| Argument | Type | Description |
|---|---|---|
text * | string | The text to sort |
labels * | string | Comma-separated labels to choose between |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/text/classify?text=text&labels=labels"
GET /api/v1/text/extractTurn text into JSON matching a schema you give. Pass the fields you want as a JSON schema or a plain description; returns JSON only. Capped at 30,000 characters
| Argument | Type | Description |
|---|---|---|
text * | string | The text to read |
schema * | string | A JSON schema, or a plain description of the fields wanted |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/text/extract?text=text&schema=schema"
GET /api/v1/text/summariseSummarise text into a few sentences. Pass style=bullets for a list, or a sentence count. Capped at 30,000 characters
| Argument | Type | Description |
|---|---|---|
text * | string | The text to summarise |
style | string | Optional: 'bullets' for a list, otherwise prose |
lines | number | Optional: roughly how many sentences or bullets |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/text/summarise?text=text"
GET /api/v1/text/translateTranslate text into another language, preserving formatting. Capped at 30,000 characters
| Argument | Type | Description |
|---|---|---|
text * | string | The text to translate |
to * | string | Target language, e.g. 'French' or 'ar' |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/text/translate?text=text&to=to"
The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


