API and Claude Code skill

Run Svmmon from Claude Code.

Drive the whole slideshow workflow from your terminal or any agent. Generate scored hooks, write slides in your account's voice, render finished slideshows, and deliver them to TikTok or Telegram, all over a simple REST API.

Paste one line. The skill installs itself.

Paste this into your terminal (or into Claude Code) and it downloads and installs the skill for you. There is no manual zip handling. Then start a new Claude Code session and ask it to make slideshows.

Terminal
curl -fsSL https://app.svmmonapp.com/svmmon-claude-code-skill.zip -o /tmp/svmmon-skill.zip && unzip -oq /tmp/svmmon-skill.zip -d ~/.claude/skills && rm /tmp/svmmon-skill.zip

Prefer to handle it yourself? You can download the zip manually and unzip it into ~/.claude/skills.

A self-contained skill that teaches Claude Code your API.

The skill is a folder of plain files. Claude Code reads them and learns how to drive the Svmmon REST API directly, so you can ask for slideshows in your account's voice and it knows exactly which calls to make.

What is in the box

  • SKILL.md teaches Claude Code when and how to use Svmmon.
  • api-reference.md documents every endpoint and field.
  • faq.md covers the common questions and edge cases.
  • openapi.json is the machine-readable spec for the whole API.

Persona-driven, end to end

Your account already holds the voice, audience, and style of each persona you have set up. The skill drives generation in that voice, so slideshows come back sounding like you, not like a generic model.

Ask in plain language. Claude Code handles the calls.

Add Svmmon as a first-party MCP server.

If you would rather wire Svmmon in as a tool server, the first-party MCP server is published on npm. It uses the same API key as the skill, so you only generate one key.

Terminal
claude mcp add svmmon -e SVMMON_API_KEY=svm_your_key_here -- npx -y svmmon-mcp

Swap svm_your_key_here for the API key you generate in the app. Same key as the skill.

The endpoints, at a glance.

Authenticate with a Bearer svm_ key. Base URL is https://app.svmmonapp.com/api/v1. From there you can run the full workflow.

Read

  • Check your usage and remaining quota.
  • List your profiles (your personas).
  • List the slide presets you can generate against.
  • List your past slideshows.

Create and deliver

  • Generate scored hooks for a profile.
  • Generate full, rendered slideshows.
  • Deliver a slideshow to TikTok.
  • Deliver a slideshow to Telegram.

Machine-readable spec

The full OpenAPI spec is public. Point any tool, generator, or agent at it.

app.svmmonapp.com/openapi.json

Available on the Growth plan and up.

The API and the skill are part of the Growth plan and higher. You need a Svmmon account and an API key, which you generate in the app right after you sign up.

The short version. Sign up, pick a Growth plan or higher, generate an API key, then install the skill or add the MCP server. After that, you drive Svmmon from Claude Code.