> For the complete documentation index, see [llms.txt](https://docs.mylinkconnect.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mylinkconnect.com/installation.md).

# Installation

### Connecting the MyLINK Connect MCP to Claude Code <a href="#connecting-the-xenioo-mcp-to-claude-code" id="connecting-the-xenioo-mcp-to-claude-code"></a>

The MyLINK Connect MCP server is a **remote HTTP server** that uses **OAuth** for authentication. You don't need to manage any API keys manually, Claude Code will open a browser window for you to log in and grant access to your Xenioo account.

**Prerequisites**

* Claude Code installed ([installation guide](https://docs.claude.com/en/docs/claude-code/overview))
* A MyLINKConnect account

**1. Add the MCP server**

Run the following command in your terminal:

<a class="button secondary">Copy</a>

```
claude mcp add --transport http MyLINKConnect https://mcp.mylinkconnect.com/mcp
```

* `MyLINKConnect` is the local name of the server (you can choose any name).
* `--transport http` tells Claude Code this is a remote HTTP server.

By default the server is added to your current project. To make it available across all your projects, add the `--scope user` flag:

<a class="button secondary">Copy</a>

```
claude mcp add --transport http --scope user xenioo https://mcp.mylinkconnect.com/mcp
```

**2. Authenticate with OAuth**

Start Claude Code and run the `/mcp` command:

<a class="button secondary">Copy</a>

```
/mcp
```

Select **MyLINKConnect** from the list and choose **Authenticate**. Your browser will open the MyLINKConnect login page, sign in and authorize Claude Code to act on your account. Once complete, the connection status will show as **connected**.

**3. Verify the connection**

Still inside `/mcp`, confirm that **MyLINKConnect** is listed as **connected** and that its tools are available. You can also run:

<a class="button secondary">Copy</a>

```
claude mcp list
```

You're now ready to interact with your MyLINKConnect account simply by chatting with Claude.
