Skip to main content
Cline stores MCP server settings in cline_mcp_settings.json.

Config location

In Cline:
  1. Click the MCP Servers icon.
  2. Open the Configure tab.
  3. Click Configure MCP Servers.
This opens cline_mcp_settings.json.

Config

Add the versuno server under mcpServers:
{
  "mcpServers": {
    "versuno": {
      "command": "npx",
      "args": ["-y", "versuno-mcp"],
      "env": {
        "VERSUNO_API_KEY": "uk_live_xxx"
      }
    }
  }
}

Remote (hosted HTTP)

To use Versuno’s hosted server instead of npx, point Cline at the URL with your key as a bearer token:
{
  "mcpServers": {
    "versuno": {
      "url": "https://mcp.versuno.ai/mcp",
      "headers": {
        "Authorization": "Bearer uk_live_xxx"
      }
    }
  }
}
The hosted server provides the read/query tools only — pull_asset and push_asset need local disk access, so use the npx config above for those.

Reloading

After saving, restart the server from the MCP Servers panel (or restart Cline).

Using it

In chat, ask Cline to use Versuno tools naturally:
“Search my Versuno assets for onboarding instructions and load the best match.”
Cline can ask for approval before MCP tool calls. Keep approvals enabled. See Security.

Troubleshooting

Open the MCP Servers panel to inspect server status and errors. For common issues (invalid keys, missing tools, timeouts), see Troubleshooting.