Photo AI Studio MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PHOTOAI_API_KEY | Yes | Your API key from photoaistudio.com/api-keys | |
| PHOTOAI_BASE_URL | No | API base URL (default: https://photoaistudio.com) | https://photoaistudio.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_accountA | Get your Photo AI Studio account info: credit balance, total predictions, and membership date. Use this to check available credits before generating photos. |
| browse_themesA | Browse available photo themes/categories for AI photo generation. Filter by gender or search by tag. Returns theme slugs needed for the generate_photo tool. |
| upload_imageA | Upload an image to Photo AI Studio CDN. Returns a CDN URL needed by generate_photo, edit_image, and create_video tools. Accepts a public image URL or base64-encoded image data. Max 10MB. |
| generate_photoA | Generate AI photos from face images using 150+ themed styles or custom prompts. Costs 100 credits per photo. Requires uploading face images first via upload_image. Use browse_themes to discover available categories. |
| edit_imageA | Edit a photo using one of 19 AI operations. Credit costs: remove_background (10), replace_background (3), all others (100). Operations:
All image URLs must be CDN URLs from upload_image. |
| create_videoA | Create AI videos. Costs 500 credits (video) or 100 credits (product_holder image). Types:
|
| get_predictionA | Check the status of an async operation (generation, edit, or video). Returns the current state and result URL when complete. |
| list_predictionsA | List past predictions (generations, edits, videos) with pagination and optional state filter. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Photo AI Studio Capabilities | Complete list of operations, credit costs, pricing, and usage guide |
TDQS
Scored across 8 tools
Each tool has a clearly distinct purpose: browse_themes for theme discovery, create_video for video generation, edit_image for photo editing, generate_photo for AI photo generation, get_account for account info, get_prediction and list_predictions for status, and upload_image for image upload. There is no overlap between these functions.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., browse_themes, create_video, edit_image, generate_photo, get_account, get_prediction, list_predictions, upload_image). The verbs are imperative and descriptive, providing a predictable naming convention.
With 8 tools, the server covers the essential operations of a photo AI studio: uploading, generating, editing, creating videos, checking account info, and managing predictions. The number is well-scoped and neither too sparse nor too bloated.
The tool set covers the main lifecycle: upload, generate/edit/video, and check predictions. Minor gaps exist, such as no tool to delete uploaded images or cancel predictions, but these are non-critical for common workflows. The included operations are comprehensive.