> ## Documentation Index
> Fetch the complete documentation index at: https://docs.versuno.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Cline

> Connect Versuno MCP to Cline.

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`:

```json theme={null}
{
  "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:

```json theme={null}
{
  "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](/mcp/security).

## Troubleshooting

Open the MCP Servers panel to inspect server status and errors. For common issues (invalid keys, missing tools, timeouts), see [Troubleshooting](/mcp/setup#troubleshooting).
