MCP サーバー概要
What is Pixapi MCP Server?
Pixapi MCP Server is a hosted Remote MCP image pipeline for AI agents. It connects through OAuth 2.1 with PKCE, so users authorize their Pixapi account in the browser without copying API keys into an MCP client.
Connection
Add the Remote MCP endpoint https://api.pixapi.ai/mcp to a client that supports Streamable HTTP, protected-resource discovery, dynamic client registration, and OAuth. Access is limited to the pixapi:tools scope.
Available tools
- pixapi_get_pricing_and_balance — checks the account credit balance and live image/video model pricing, including which Gemini image models are currently supported by MCP.
- pixapi_generate_image — submits an asynchronous Gemini text-to-image task and returns a
task_id. - pixapi_get_task — retrieves task status, progress, cost, generated image URL, or failure details.
Recommended workflow
Check pricing and balance, submit one image task, then poll the returned task ID until it completes. Image generation consumes Pixapi credits. Polling is read-only, but repeating a generation request creates and charges a new task because generation is currently non-idempotent.
Public MVP scope
The current MCP release supports Gemini text-to-image generation. GPT Image models, image editing, video generation, and the stdio bridge are not part of the public MCP MVP. See the Pixapi MCP guide for current compatibility and usage details.