Give any AI assistant the ability to produce exact, beautiful Hindi, Marathi, Gujarati and English typography. Generic image models cannot guarantee correct conjuncts and matras — Studio99 renders the text letter-perfect, as editable SVG or PNG.
Remote MCP server: https://mcp.studio99.app/api/mcp
Studio99 exposes a remote Model Context Protocol server with OAuth sign-in. Any MCP-capable AI client can connect to it and use these tools:
generate_calligraphy — exact-text calligraphy in Hindi/Marathi/Gujarati/English with semantic use_case and mood selection (e.g. "elegant wedding")list_styles — browse font styles with moods and best-for metadatacreate_studio99_project — open a result as an editable project in the Studio99 design editorSign-in uses your Studio99 account; generation costs Studio99 credits (free monthly allowance included).
Add Studio99 as a custom connector: Settings → Connectors → Add custom connector, then paste the MCP URL. Claude will walk you through the Studio99 sign-in.
https://mcp.studio99.app/api/mcpThen ask naturally: "Create elegant Marathi wedding calligraphy saying शुभ विवाह".
In ChatGPT, enable Settings → Connectors → Advanced → Developer mode, then add a new connector with the MCP URL above and complete the Studio99 sign-in.
https://mcp.studio99.app/api/mcpFor Claude Code, add the remote server from your terminal:
claude mcp add --transport http studio99 https://mcp.studio99.app/api/mcpFor Cursor (or any client using an mcp.json):
{
"mcpServers": {
"studio99": {
"url": "https://mcp.studio99.app/api/mcp"
}
}
}Gemini CLI and the Gemini API support remote MCP servers and function calling. Point your configuration at the MCP URL above, or call the REST API directly from your function-calling setup (below).
Building your own agent? Use the REST API directly with an API key — start by discovering capabilities (no auth required):
curl https://studio99.app/api/v1/capabilitiesThen generate with semantic parameters — your agent never needs to know font IDs:
curl -X POST https://studio99.app/api/v1/generate \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"text": "शुभ विवाह",
"use_case": "wedding",
"mood": "elegant",
"format": "png"
}'Language is auto-detected from the script. See the full API reference and pricing.