Piooy
Piooy
案例
博客定價
Piooy
Piooy

Piooy 是一個強大的下一代 AI 圖像生成平台,可生成超逼真的場景、準確的文本渲染和精細的模擬。
通過提供對 Nano Banana Pro 等先進模型的訪問,實現無與倫比的精度和專業級輸出。

AI 圖像

  • AI 圖像生成器
  • 文生圖生成器
  • 圖生圖生成器
  • AI 圖像編輯器
  • 圖像生成器
  • 平面圖生成器

AI 影片

  • AI 影片生成器
  • 文生影片生成器
  • 圖生影片生成器
  • Veo 3.1
  • Sora 2
  • Seedance 2.0

AI 工具

  • Photo Restoration
  • Watermark Remover
  • Image Upscaler
  • Remove Background
  • AI ID Photo Generator
  • Professional Headshot

資源

  • 博客
  • 案例展示
  • 更新日誌
  • API 文檔
  • 價格
  • 常見問題
© 2026 Piooy, All rights reserved
隱私政策服務條款退款政策退款申請關於我們
deDeutschenEnglishesEspañolfrFrançaiszh-HK繁体中文ja日本語ko한국어trTürkçezh中文heעבריתplPolski
本服務由先進的 AI 技術驅動。我們是獨立的第三方服務提供商,致力於為用戶提供優化的技術支持。本站與 Google 或其他模型提供商無直接關聯。

Piooy MCP server

Piooy ships a Model Context Protocol server so Claude, ChatGPT Desktop with MCP extensions, Cursor, Windsurf and other MCP-aware agents can generate images and videos inside their chat — no browser context switch.

Endpoint

  • Streamable HTTP (recommended): https://piooy.com/api/mcp/mcp
  • SSE (legacy clients): https://piooy.com/api/mcp/sse
  • Server card: https://piooy.com/.well-known/mcp/server-card.json

Authentication

Every MCP request must carry Authorization: Bearer <piooy_api_key>. Create one at /settings/apikeys. Tokens are shown once — store them in a password manager.

Claude Desktop

Claude Desktop reads its MCP config from ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows). Add a piooy entry:

{
  "mcpServers": {
    "piooy": {
      "url": "https://piooy.com/api/mcp/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_PIOOY_API_KEY"
      }
    }
  }
}

Restart Claude Desktop and the Piooy tools appear in the tool picker.

Cursor / Windsurf / Zed

These clients accept remote MCP servers with bearer auth out of the box. Use the same URL and header as Claude Desktop — consult your client's documentation for the exact file location (typically mcp.json inside the settings folder).

Tools

generate_image

Start an image generation task. Returns { code, data: { taskId } }.

{
  "model": "nano-banana-pro",
  "prompt": "a golden retriever wearing a beret in Paris",
  "resolution": "2K",
  "aspect_ratio": "16:9"
}

See the full model list on the image generator page or any individual facts page.

generate_video

Start a video generation task. Duration and resolution vary by model.

{
  "model": "veo-3-1",
  "prompt": "drone shot of a lighthouse at sunset, 16:9, cinematic",
  "duration": "5",
  "resolution": "1080p"
}

get_task_status

Poll until the task is SUCCESS or FAILED. Image tasks typically finish in 3-10 s; video tasks in 30-120 s.

{
  "taskId": "<uuid returned by generate_image or generate_video>"
}

Credits and billing

Credits are deducted from the account that owns the API key. The same quotas and rate limits that apply to /api/v1/generate apply here. Unlimited-plan subscribers can call free-tier models at zero cost.

Raw REST alternative

If your agent framework does not speak MCP yet, call the same logic over plain HTTPS. See the OpenAPI spec for complete schemas.