Skip to main content
The Versuno MCP server implements the Model Context Protocol so coding agents can search, load, and sync your Versuno assets without leaving their editor. It works with Cursor, Claude Code, Claude Desktop, VS Code, Windsurf, Zed, Antigravity, and any other MCP-compatible client.

What you can do

  • Load assets into context with get_asset. The agent reads the full content of a prompt, persona, context, system prompt, or skill.
  • Search your library with search_assets before loading, so the agent only pulls what’s relevant.
  • Sync to disk with pull_asset. Writes a markdown file with YAML frontmatter into .versuno/.
  • Push back with push_asset. Edits made in your editor become new versions in Versuno cloud.
Not sure whether to use the MCP or the CLI? See MCP vs CLI.

Quick start

  1. Get an API key from versuno.ai/settings/api-keys.
  2. Add the server to your MCP client. For Cursor:
    {
      "mcpServers": {
        "versuno": {
          "command": "npx",
          "args": ["-y", "versuno-mcp"],
          "env": {
            "VERSUNO_API_KEY": "uk_live_xxx"
          }
        }
      }
    }
    
  3. Restart the client. Your agent now has 5 new tools.
For setup in other clients, see Clients.

Package

Published on npm as versuno-mcp. Source on GitHub. MIT licensed.