MCP Hub
Back to servers

YaparAI MCP Server

An all-in-one AI content creation platform with 30 tools for generating images, videos, music, and managing enterprise social media and CRM. Enables content generation, image editing, e-commerce features, and social media management directly from MCP-compatible AI assistants.

glama
Stars
4
Forks
2
Updated
Apr 16, 2026
Validated
Apr 18, 2026

YaparAI MCP Server

All-in-one AI content creation + enterprise social media & CRM — directly from Claude Desktop, Cursor, Windsurf, and other MCP-compatible AI assistants.

PyPI License Python

What is YaparAI?

YaparAI is an all-in-one AI platform with 30 tools:

  • Image Generation — Flux, SDXL, Imagen 4 (text-to-image, image-to-image)
  • Video Generation — Veo 3.1, Kling (text-to-video, image-to-video)
  • Music Generation — Suno v4 (full songs with vocals, instrumentals)
  • Image Editing — Background removal, face swap, style transfer
  • E-commerce — Virtual try-on, AI mannequin for product photos
  • 448+ Templates — Pre-built ComfyUI workflows (logos, ads, product photos...)
  • AI Text & Vision — Gemini-powered text generation and image analysis
  • Chatbots — Interact with AI chatbots via API
  • Social Media — Post, caption, hashtag, inbox, AI auto-reply (Enterprise)
  • CRM — Customer management, AI info extraction, shipping, bulk messaging (Enterprise)

Quick Start

1. Install

pip install yaparai

2. Get your API Key

  1. Sign up at yaparai.com (100 free credits)
  2. Go to Settings > API Keys
  3. Create a new key — copy it (shown only once!)

3. Configure Claude Desktop

Edit your Claude Desktop config (Settings > Developer > Edit Config):

{
  "mcpServers": {
    "yaparai": {
      "command": "yaparai",
      "env": {
        "YAPARAI_API_KEY": "yap_live_your_key_here",
        "YAPARAI_ORG_ID": "your-org-id-for-enterprise-features"
      }
    }
  }
}

YAPARAI_ORG_ID is optional — only needed for social media & CRM tools. Use the list_organizations tool to find your org ID.

4. Use it!

"Generate an image of a sunset over Istanbul"

"List available templates for logo design"

"Create a social media post for our new product launch"

"Show me the inbox messages on Instagram"

"Generate an AI reply for that customer question"

"Send shipping info to customer #123 — Yurtici, tracking ABC456"

Available Tools (30)

Content Generation (4)

ToolDescriptionCost
generate_imageGenerate images (Flux, SDXL, Imagen 4)~6 credits
generate_videoGenerate videos (Veo 3.1, Kling)~350 credits
generate_musicGenerate music (Suno v4)~14 credits
generate_music_videoMusic + video combined~364 credits

Image Editing (3)

ToolDescriptionCost
transform_imageImage-to-image style transfer~6 credits
remove_backgroundRemove background from images~2 credits
swap_faceFace swap in images~6 credits

E-commerce (2)

ToolDescriptionCost
virtual_try_onVirtual clothing try-on~6 credits
generate_mannequinAI mannequin for product photos~6 credits

Avatar (1)

ToolDescriptionCost
lip_syncTalking avatar from photo~14 credits

Templates (3)

ToolDescriptionCost
list_templatesBrowse 448+ templatesFree
get_template_detailGet template inputs/detailsFree
execute_templateRun a template workflowVaries

AI Tools (2)

ToolDescriptionCost
generate_textGemini text generation (scripts, lyrics, storyboard)~2 credits
analyze_imageGemini Vision image analysis~2 credits

Chatbot (2)

ToolDescriptionCost
list_chatbotsList available chatbotsFree
chat_with_botChat with a YaparAI chatbotVaries

Enterprise: Social Media (8)

ToolDescriptionCost
list_social_accountsList connected social accountsFree
create_social_postPost to Instagram/Facebook/TikTok/XFree
generate_captionAI-generate post captionFree
generate_hashtagsAI-generate hashtagsFree
list_inboxRead social media inbox/DMsFree
read_conversationRead conversation messagesFree
reply_to_messageReply to a DM/messageFree
ai_reply_suggestionGet AI-suggested replyFree

Enterprise: CRM (6)

ToolDescriptionCost
list_customersBrowse CRM customersFree
get_customerGet customer detailsFree
extract_customer_infoAI-extract info from conversationsFree
send_shipping_infoSend tracking notificationFree
bulk_messageMass message customersFree
sync_customers_from_inboxImport customers from inboxFree

Utility (4)

ToolDescriptionCost
list_organizationsList your organizationsFree
check_balanceCheck credit balanceFree
list_modelsList models and costsFree
get_job_statusCheck job statusFree

Configuration

Env VariableDescriptionDefault
YAPARAI_API_KEYYour API key (required)
YAPARAI_ORG_IDOrganization ID (for enterprise tools)
YAPARAI_BASE_URLAPI base URLhttps://api.yaparai.com

Cursor / Windsurf / Claude Code

Same configuration format in MCP settings:

{
  "yaparai": {
    "command": "yaparai",
    "env": {
      "YAPARAI_API_KEY": "yap_live_your_key_here"
    }
  }
}

Python SDK Usage

import asyncio
from yaparai.client import YaparAIClient

async def main():
    client = YaparAIClient(api_key="yap_live_your_key_here")

    # Generate an image
    job = await client.generate({"type": "image", "prompt": "A futuristic city"})
    result = await client.wait_for_result(job["job_id"])
    print(result["result_url"])

    # List templates
    templates = await client.list_templates({"category": "logo"})
    print(templates)

    # Social media caption
    caption = await client.social_generate_caption("org-id", {
        "topic": "summer sale",
        "platform": "instagram",
        "language": "tr",
    })
    print(caption)

asyncio.run(main())

Pricing

  • 100 free credits on signup (no credit card required)
  • Image: 6 credits ($0.50)
  • Video: 350 credits ($3-5)
  • Music: 14 credits ($1)
  • Enterprise features: included with subscription
  • Credits never expire

View pricing

Links

License

Apache 2.0 — see LICENSE

Reviews

No reviews yet

Sign in to write a review