picsart-api

picsart-api is a skill for Claude Code from PicsArt/gen-ai-skills. It costs 15 tokens per session (3,294 once invoked), scanned B, original, MIT.

A set of tools for generating and editing images, videos, audio, and other media through Picsart’s connected service.

In plain words
What is it for?
Use it to create or edit media, remove backgrounds or objects, resize and reformat files, alter styles, process video and audio, improve resolution, add watermarks, or create batches of personalized assets. A connected Picsart service and API key are required.
Why use it?
It provides one interface for common media changes, so separate manual tools are not needed for each operation.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; mentions Codex.

Part of the picsart plugin — 23 skills, 2 MCP servers shipped together

Good fit Use it to create or edit media, remove backgrounds or objects, resize and reformat files, alter styles, process video and audio, improve resolution, add watermarks, or create batches of personalized assets. A connected Picsart service and API key are required.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/picsart/gen-ai-skills/picsart-api
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PicsArt/gen-ai-skills --skill picsart-api
Clone the repo
git clone --depth 1 https://github.com/PicsArt/gen-ai-skills

Made for: Claude Code.

Or install picsart, the plugin that ships this one along with the rest of its 23 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for picsart-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/picsart/gen-ai-skills/picsart-api/github.svg)](https://agentmods.dev/skills/picsart/gen-ai-skills/picsart-api)
Your own site
<a href="https://agentmods.dev/skills/picsart/gen-ai-skills/picsart-api"><img src="https://agentmods.dev/badge/skills/picsart/gen-ai-skills/picsart-api/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for picsart-api

Your own site · 80×15
<a href="https://agentmods.dev/skills/picsart/gen-ai-skills/picsart-api"><img src="https://agentmods.dev/badge/skills/picsart/gen-ai-skills/picsart-api.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,294 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00015 $0.03294
Opus 5 $0.00008 $0.01647
Sonnet 5 $0.00003 $0.00659
Haiku 4.5 $0.00002 $0.00329

Measured 11d ago against content hash cdcac1c5de2a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

picsart-api scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Subtle steeringmediumPrompt injection

Instructions that bias recommendations or shape behaviour without the user noticing.

2. **Async jobs must be polled.** Many tools return a job id and complete later. Never tell the user "done" on the submit call alone — always chain through the paired poller until the job's status is `FINISHED` / `succee
skills/picsart-api/SKILL.md · 171 lines

How it starts

The opening of the file, as written. The whole thing — 171 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Picsart API (MCP)

The picsart MCP server at https://mcp.picsart.io/v1 exposes four Picsart REST APIs as MCP tools. Each tool name equals the OpenAPI operationId verbatim — dashes preserved (e.g. genai-text2image, image-remove-background, video-trim, vd-export-replay).

When to Use

Use this skill whenever the user asks to:

  • Generate net-new content from a prompt — image, video, sticker, logo, speech, sound, music, SFX, or text completion.
  • Edit, enhance, resize, reformat, recolor, or transform an existing image or video.
  • Remove backgrounds or objects; inpaint, outpaint, or extend canvas.
  • Apply effects, masks, styles, adjustments, blur, color/style transfer.
  • Extract, transcribe, or manipulate audio tracks in video.
  • Upscale, FPS-upscale, super-resolve, or enhance faces.
  • Watermark, crop, trim, concat, or fit media.
  • Render bulk personalised creative assets via a Replay.

If the request touches any of the above, read the relevant doc in references/ BEFORE calling any picsart-*, image-*, video-*, genai-*, or vd-* MCP tool.

Prerequisites

The picsart MCP server must be connected and a Picsart API key available:

  • MCP server. This repo ships the server config at the repo-root .mcp.json. Claude Code auto-loads it when the repo (or the installed skill) is in scope. For other hosts (Cursor, Codex) or a manual setup, register an HTTP MCP server named picsart pointing at https://mcp.picsart.io/v1:

    {
      "mcpServers": {
        "picsart": {
          "type": "http",
          "url": "https://mcp.picsart.io/v1",
          "headers": {
            "X-Picsart-API-Key": "${PICSART_API_KEY}",
            "Accept": "application/json"
          }
        }
      }
    }
    
  • API key. Export PICSART_API_KEY in the environment before starting the agent. Never hardcode it — the config interpolates ${PICSART_API_KEY} at runtime.

  • Two servers, two auth models. The repo-root .mcp.json registers two Picsart servers. Use the one that matches your setup:

    • picsart at https://mcp.picsart.io/v1 — the server this skill uses. Auth via the X-Picsart-API-Key: ${PICSART_API_KEY} header (shown above). Exposes all image-*, video-*, genai-*, and vd-* tools.
    • picsart-gen-ai at https://api.picsart.com/gen-ai/mcp — the generative-AI server. Auth via OAuth: the host (Cursor, Claude Code) runs an interactive sign-in the first time it connects; no API-key header is needed. Its tools overlap with the genai-* surface of the picsart server, so pick one path per session rather than mixing.

Read the full file on GitHub · 171 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 171 lines · 15 tokens per session scan B cdcac1c5de2a

Subscribe to this mod's changes

picsart-api is a skill published in the GitHub repository PicsArt/gen-ai-skills (4 stars, last pushed 14d ago), licensed MIT. It adds 15 tokens to every session and 3,294 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (subtle steering). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

lastfm

Access Last.fm listening history, music stats, and discovery. Query recent tracks, top artists/albums/tracks, loved tracks, similar artists, and global charts.

SteveGrosbois/tidal-cli · 36 tokens

tidal-playlist

Manage Tidal playlists — list, create, rename, delete, set public/private visibility, add or remove albums and tracks, and list tracks in a playlist. Use when the user wants to work with playlists or share one.

SteveGrosbois/tidal-cli · 50 tokens

metalorgie-weekly-releases

Récupère et filtre les sorties d'albums de la semaine publiées sur metalorgie.com ("Les sorties de la semaine"). Affiche les albums correspondant aux genres favoris de l'utilisateur (Metalcore, Post Hardcore, Hardcore, Neo metal) ainsi que les albums de groupes reconnus/notables, même hors genres favoris. Utilise ce…

SteveGrosbois/tidal-cli · 115 tokens

tidal-library

Add or remove artists, albums, or tracks from your Tidal favorites library. Use when the user wants to save music, like a song, follow an artist, or remove items from their library.

SteveGrosbois/tidal-cli · 44 tokens

tidal-search

Search for artists, albums, or tracks on Tidal. Use when the user wants to find music, look up an artist, search for a song or album.

SteveGrosbois/tidal-cli · 37 tokens

hypr-video-cli

Generates MP4 videos from canvasState JSON via CLI. Builds canvasState JSON with elements, animations, transitions, keyframes, captions, and effects, then renders with npx hypr-video-cli. Activates when creating videos, promos, clips, or animations from descriptions; composing video/image/text/shape/audio elements on…

superyhee/hypr-video-skills · 146 tokens