---
title: "Agent plugins"
description: "Install QuiverAI plugins for Codex and Cursor."
icon: "blocks"
sidebar:
  badge: "Beta"
---

QuiverAI publishes public agent plugins for clients that can load plugin bundles. The
plugins package the hosted [MCP server](/app/mcp) configuration with QuiverAI-specific
agent instructions for SVG generation, vectorization, and animation.

Use a plugin when your client supports plugin bundles or marketplace installation. Use the manual
MCP setup on the [MCP server](/app/mcp) page when your client does not support plugins yet.

:::info
Plugins do not contain QuiverAI credentials or local secrets. Authentication still runs through
the MCP OAuth flow in your client.
:::

## Available plugins

<CopyToast />
<InstallButtons
  items={[
    {
      ariaLabel: "Copy the QuiverAI Codex plugin install commands",
      copyErrorMessage:
        "Could not copy the Codex install commands. Select and copy them from the Codex instructions below.",
      copySuccessMessage: "Codex install commands copied",
      copyText:
        "codex plugin marketplace add quiverai/codex-plugin\ncodex plugin add quiverai@quiverai",
      icon: "/images/agents/codex.svg",
      invertIconInDark: true,
      label: "Install in Codex",
    },
    {
      ariaLabel: "Install the QuiverAI plugin for Cursor",
      href: "https://cursor.com/marketplace/quiverai",
      icon: "/images/agents/cursor.svg",
      invertIconInDark: true,
      label: "Install in Cursor",
    },
  ]}
/>

## What the plugins include

- A client-specific plugin manifest.
- MCP server configuration for `https://app.quiver.ai/mcp`.
- The QuiverAI skill that guides agents through model selection, reference-image uploads,
  generation, vectorization, animation, polling, and SVG content retrieval.
- A manual fallback snippet in each public repository README.

The MCP server remains hosted by QuiverAI. The plugins only package setup metadata and
agent instructions.

## Install and authenticate

**Codex**

Add the QuiverAI plugin marketplace and install the plugin:

```bash
codex plugin marketplace add quiverai/codex-plugin
codex plugin add quiverai@quiverai
```

After installation, verify that the MCP server is registered:

```bash
codex mcp list
```

If Codex marks the server as needing login, start the OAuth flow:

```bash
codex mcp login quiverai
```

**Cursor**

Install QuiverAI from the Cursor marketplace:

```text
https://cursor.com/marketplace/quiverai
```

After installation, verify that the MCP server is registered:

```bash
cursor-agent mcp list
cursor-agent mcp list-tools quiverai
```

If Cursor marks the server as needing login, authenticate from Cursor's MCP UI or run:

```bash
cursor-agent mcp login quiverai
```

## Troubleshooting

If your client does not discover the plugin's MCP server, use the manual MCP configuration
from the [MCP server](/app/mcp) page. If authentication opens in the browser but does not
return to the client, remove the saved MCP connection from your client and add it again.

For account issues, [contact us](https://quiver.ai/contact).
