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

# Claude

Add the Trusys MCP server:

**Basic setup:**

```bash theme={null}
claude mcp add --transport http trusys https://mcp.trusys.ai/mcp \
  --header "x-api-key: YOUR_TRUSYS_API_KEY"
```

**With Bearer token:**

```bash theme={null}
claude mcp add --transport http trusys https://mcp.trusys.ai/mcp \
  --header "Authorization: Bearer YOUR_TRUSYS_API_KEY"
```

**With custom API endpoint:**

```bash theme={null}
claude mcp add --transport http trusys https://mcp.trusys.ai/mcp \
  --header "x-api-key: YOUR_TRUSYS_API_KEY" \
  --header "x-trusys-base-url: https://your-trusys-api.example"
```

Manage your MCP servers:

```bash theme={null}
claude mcp list
claude mcp get trusys
claude mcp remove trusys
```
