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 문서
  • 요금제
  • FAQ
© 2026 Piooy, All rights reserved
개인정보 처리방침서비스 약관환불 정책환불 신청회사 소개
deDeutschenEnglishesEspañolfrFrançaiszh-HK繁体中文ja日本語ko한국어trTürkçezh中文heעבריתplPolski
이 서비스는 고급 AI 기술로 구동됩니다. 당사는 사용자에게 최적화된 기술 지원을 제공하는 데 전념하는 독립적인 제3자 서비스 제공업체입니다. 이 사이트는 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.