# Supportivekoala — how to use (mcp.ai)

Connect your Supportivekoala account and use 6 tools for images and design straight from your AI agent. Connect with your own API key. Supportivekoala is a platform that automates image generation using customizable templates, enabling users to create visual content programmatically through API integration.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_supportivekoala?ms=1787295900000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `supportivekoala_create_image`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/supportivekoala`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/supportivekoala/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/supportivekoala/create/image` — Tool to create a new image based on a template. Use when you have selected your template and prepared modifications.
  - body: { template: string, webhook_url?: string, modifications: object }
- `POST https://api.mcp.ai/api/supportivekoala/create/template` — Tool to create a new template for image generation. Use after gathering template details.
  - body: { name: string, image_url: string, json_schema: object, webhook_url?: string }
- `POST https://api.mcp.ai/api/supportivekoala/list/images` — Tool to list images associated with the authenticated user. Use after confirming authentication.
- `POST https://api.mcp.ai/api/supportivekoala/list/templates` — Tool to retrieve all templates. Use when you need to list all templates for the authenticated user.
- `POST https://api.mcp.ai/api/supportivekoala/register/user` — Tool to register a new user account. Use after collecting valid user credentials.
  - body: { email: string, password: string }
- `POST https://api.mcp.ai/api/supportivekoala/retrieve/template` — Tool to retrieve a template by ID. Use when you have a valid template ID and need full template details. Use after confirming this detail.
  - body: { id: string }

## Example prompts
- "What can I do in Supportivekoala?"
- "Show me a summary of my Supportivekoala account"

## More
- Page: https://mcp.ai/supportivekoala
- Agent spec (llms.txt): https://mcp.ai/supportivekoala/llms.txt
- Postman collection: https://mcp.ai/supportivekoala/postman.json
