Generate, refine, and vectorize SVG assets with the hosted QuiverAI MCP server, right from Codex.
- Text-to-SVG generation with the Arrow family of models
- Raster-to-SVG vectorization
- Reference-image prompting and refinement
- Creation and task lookup
- A bundled agent skill that guides model selection, prompt structure, and result polling
codex plugin marketplace add quiverai/codex-plugin
codex plugin add quiverai@quiverai
codex mcp login quiveraiAfter installing, start a new Codex thread and ask Codex to use QuiverAI.
Once listed, install the QuiverAI plugin directly from the Codex Plugin Directory.
If plugin-based MCP discovery is unavailable in your Codex version, register the server directly:
codex mcp add quiverai --url https://app.quiver.ai/mcp
codex mcp login quiveraiCodex handles authentication through its MCP login flow. The first time you call a QuiverAI tool you will be prompted to sign in to your Quiver account; tokens are stored by Codex.
If you do not already have a Quiver account, sign up at quiver.ai.
list_models- list QuiverAI models available to the connected userlist_creations- list generated QuiverAI creations for the connected userget_creation- read integration-safe metadata for one creationget_creation_content- read SVG content for one creationget_task- read a generation, vectorization, or animation task for pollingcreate_generation- create a text-to-SVG generation task from text and optional image sourcescreate_vectorization- create a raster-to-SVG vectorization task from an image sourcecreate_animation- create an animation task from an existing SVG creation or SVG source
skills/quiverai/SKILL.md is a Codex agent skill. It tells the agent when to call which tool, how to write effective generation prompts, how to pass direct image sources, and how to poll tasks to completion.
- "Create a flat vector illustration of a delivery drone with QuiverAI."
- "Vectorize this raster image with QuiverAI."
- "Generate a wordmark for an indie coffee brand in a muted palette, then vectorize the best result."
After installing and signing in, confirm the plugin is wired up:
codex mcp listThe quiverai MCP server should appear as enabled and authenticated. If your client supports listing MCP tools, it should show the eight quiverai tools above. From there, ask the agent to run the QuiverAI skill end-to-end (for example: "list models, then generate an SVG of a delivery drone, then read the SVG content").
The plugin points Codex at the hosted QuiverAI MCP server:
{
"mcpServers": {
"quiverai": {
"type": "http",
"url": "https://app.quiver.ai/mcp"
}
}
}No further configuration is required.
MIT-licensed. Canonical source lives in the private QuiverAI monorepo at plugins/quiverai-codex; this repository is a public distribution artifact synced from main. Issues and feedback: support@quiver.ai.