Generate, refine, and vectorize SVG assets with the hosted QuiverAI MCP server, right from Cursor.
- 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
Open the Cursor marketplace and install QuiverAI.
If plugin-based MCP discovery is unavailable in your Cursor version, add this to .cursor/mcp.json in your project or ~/.cursor/mcp.json globally:
{
"mcpServers": {
"quiverai": {
"url": "https://app.quiver.ai/mcp"
}
}
}Then authenticate from Cursor's MCP settings or with:
cursor-agent mcp login quiveraiCursor 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 Cursor.
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 Cursor 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:
cursor-agent mcp list
cursor-agent mcp list-tools quiveraiThe 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 Cursor at the hosted QuiverAI MCP server:
{
"mcpServers": {
"quiverai": {
"url": "https://app.quiver.ai/mcp"
}
}
}No further configuration is required.
MIT-licensed. Canonical source lives in the private QuiverAI monorepo at plugins/quiverai-cursor; this repository is a public distribution artifact synced from main. Issues and feedback: support@quiver.ai.