> For the complete documentation index, see [llms.txt](https://docs.brigge.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.brigge.ai/the-brigge-mcp-server/getting-started/connect-an-ai-client/other.md).

# Other

## OpenCode

<details>

<summary>Authentication</summary>

Authentication is completed with a `Bearer token`. Claude will have the same level of access to your Brigge integrations as the user account that was used to [generate this token](/the-brigge-mcp-server/getting-started/generate-api-keys.md).

</details>

<details>

<summary>Configuration</summary>

Update your `opencode.json` configuration file as below:

{% code title="opencode.json" lineNumbers="true" %}

```json
{
	"$schema": "https://opencode.ai/config.json",
    ...
	"mcp": {
		"brigge": {
			"type": "remote",
			"url": "https://gateway.brigge.ai/mcp",
			"enabled": true,
			"headers": {
				"Authorization": "Bearer <your-api-token>"
			}
		}
        ...
	}
}
```

{% endcode %}

</details>

## Continue

<details>

<summary>Authentication</summary>

Authentication is completed with a `Bearer token`. Claude will have the same level of access to your Brigge integrations as the user account that was used to [generate this token](/the-brigge-mcp-server/getting-started/generate-api-keys.md).

</details>

<details>

<summary>Configuration</summary>

Update your `continue.dev` configuration file as below:

{% code title="continue.dev" %}

```yaml
mcpServers:
  - name: Brigge
    type: streamable-http
    url: https://gateway.brigge.ai/mcp
    requestOptions:
      headers:
        "Authorization": "Bearer <your-api-token>"
```

{% endcode %}

</details>
