versuno-mcp. You don’t install it manually. Your MCP client launches it on demand via npx.
Requirements
- Node.js 18 or newer on your machine.
- A Versuno API key. Create one at versuno.ai/settings/api-keys.
The universal config
Every MCP client uses some variation of the same config block:-y flag tells npx to auto-install without prompting. Subsequent runs use the cached binary.
Client-specific instructions:
Environment variables
| Variable | Required | Description |
|---|---|---|
VERSUNO_API_KEY | Yes | Your Versuno API key. Must start with uk_live_. |
VERSUNO_API_URL | No | Override the API base URL. Defaults to https://versuno.ai/api/public. Useful for self-hosted Versuno or staging environments. |
VERSUNO_DEBUG | No | Set to 1 to log HTTP requests to stderr. Useful for troubleshooting connection issues. |
Verifying it works
After configuring your client, restart it and open a chat. The agent should have access to five new tools:list_assetssearch_assetsget_assetpull_assetpush_asset
list_assets and return metadata for up to 20 assets. If it doesn’t, the server isn’t connected. See Troubleshooting.
Troubleshooting
The agent doesn’t see any Versuno tools. The server isn’t being launched. Check:- The MCP client’s config file is saved and the client has been fully restarted.
npxis on your PATH. Runnpx --versionfrom your terminal.- Node.js 18 or newer is installed. Run
node --version.
VERSUNO_API_KEY is not set.
The env block isn’t reaching the spawned process. Double-check the JSON structure. Some clients need env inside the server block, not at the top level.
VERSUNO_API_KEY is invalid.
Your key doesn’t start with uk_live_ or is too short. Regenerate it at versuno.ai/settings/api-keys.
AUTH_FAILED on every tool call.
The key was revoked or copied incorrectly. Regenerate and update the config.
Intermittent timeouts.
Set VERSUNO_DEBUG=1 in the env block, restart the client, and check its MCP log panel for the actual HTTP errors.
Installing a specific version
npx -y versuno-mcp always pulls the latest release. To pin a version, add it to the package spec:

