Wistia's plugins for AI coding agents and agentic editors, built to the Agent Plugins open standard.
Each plugin connects an agent to Wistia — video hosting, analytics, webinars, and AI remix — through Wistia's hosted MCP server, along with skills that teach agents how to use it well.
| Plugin | Description |
|---|---|
wistia |
Full access to a Wistia account: media, folders, channels, captions, webinars, analytics, and AI remix. |
- Cursor —
.cursor-plugin/marketplace.jsonat the repo root is the Cursor marketplace manifest.
Plugins themselves are vendor-neutral: each plugin directory follows the Agent
Plugins layout (plugin.json, mcp.json, skills/), so supporting another
marketplace only means adding that marketplace's manifest — the plugin content
is shared.
.cursor-plugin/
marketplace.json Cursor marketplace manifest
plugins/
wistia/
plugin.json Agent Plugins open-standard manifest
mcp.json MCP server declaration (Wistia's hosted server)
skills/ Skills, one SKILL.md per directory
assets/logo.svg
.cursor-plugin/
plugin.json Cursor plugin manifest
scripts/
validate-plugins.mjs Schema and structure validator
schemas/ Pinned official schema snapshots
The MCP server code is not in this repo — plugins point at Wistia's hosted
server at https://api.wistia.com/mcp/api. See each plugin's README for
authentication and configuration details.
npm ci
npm run validateValidates the Cursor and Agent Plugins manifests against pinned snapshots of
their official schemas, then checks referenced paths, Agent Skills naming and
frontmatter, bundled skill resources, progressive-disclosure size, and known
host-specific constructs. Schema provenance is documented in
schemas/README.md. Fix all reported errors before
submitting to a marketplace. The same command runs in GitHub Actions on pull
requests and pushes to main.