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

# Connecting to Fibery MCP

> Connect the Fibery MCP Server to Claude, ChatGPT, and other AI clients.

Fibery MCP server should work in any MCP Client.

### Claude (Desktop / Web)

1. Navigate to **Settings → Connectors → Add custom connector** (available for paid plans)
2. Fill in the connector details and submit:
   * **Name**: `Fibery`
   * **URL**: `https://mcp.fibery.io/mcp`
3. After adding the connector, Claude will automatically initiate the OAuth 2.0 authentication process (no API tokens needed). If no luck, click the Connect button for the Fibery tool and try again.

### ChatGPT

1. Navigate to **Settings → Connectors → Advanced Settings**
2. Enable "Developer mode" to allow MCP servers with any set of tools
3. Navigate back to **Settings → Connectors** and hit "Create" in the top right corner
4. Fill in the connector details and submit:
   * **Name**: `Fibery`
   * **MCP Server URL**: `https://mcp.fibery.io/mcp`
5. After adding the connector, OpenAI will automatically initiate the OAuth 2.0 authentication process (no API tokens needed). If no luck, click the Connect button for the Fibery tool and try again.

### Le Chat

1. Go to **Intelligence → Connectors**

   <img src="https://mintcdn.com/fibery/RPlQYSukIff8siBE/images/b16bc7c9-49c6-4c66-af68-48a97d0ae881.png?fit=max&auto=format&n=RPlQYSukIff8siBE&q=85&s=c430f396b7b578949c6230e38556d624" alt="Le Chat Intelligence Connectors menu" width="3340" height="1868" data-path="images/b16bc7c9-49c6-4c66-af68-48a97d0ae881.png" />

2. Click "+ Add Connector" and select "Custom MCP Connector". Add name, Connector Server and Description.

   <img src="https://mintcdn.com/fibery/RPlQYSukIff8siBE/images/a81296e8-882c-49fa-bd29-2d0b16bb437a.png?fit=max&auto=format&n=RPlQYSukIff8siBE&q=85&s=786255699be4ff639ebf9ee9fb13b340" alt="Le Chat Add Connector form" width="1022" height="1328" data-path="images/a81296e8-882c-49fa-bd29-2d0b16bb437a.png" />

3. Complete authentication by hitting Connect.

### Claude Code

Open your terminal and run:

```bash theme={null}
claude mcp add --transport http fibery https://mcp.fibery.io/mcp
```

Then start a Claude session, enter `/mcp` and authenticate via browser.

### Codex

Run this command, then authenticate via `/mcp` when Codex is running:

```bash theme={null}
codex mcp add --url https://mcp.fibery.io/mcp Fibery
```

### OpenCode

Locate your OpenCode configuration file (usually under `~/.config/opencode/opencode.json`) and add the following configuration:

```json theme={null}
{
  "mcp": {
    "fibery": {
      "type": "local",
      "command": ["npx", "-y", "mcp-remote", "https://mcp.fibery.io/mcp", "--transport", "http-only"],
      "timeout": 60000
    }
  }
}
```

Then run `opencode mcp list` to authorize.

### AugmentCode

Run this command, then authenticate via `/mcp` when Auggie is running:

```bash theme={null}
auggie mcp add --command npx --args "-y mcp-remote https://mcp.fibery.io/mcp" Fibery
```

### Cursor IDE

Locate your MCP client configuration file (usually `.cursor/mcp.json`) and add the following configuration:

```json theme={null}
{
  "mcpServers": {
    "Fibery": {
      "url": "https://mcp.fibery.io/mcp"
    }
  }
}
```

After adding the connector, Cursor will ask you to log in to your Fibery workspace using OAuth 2.0.

### Windsurf IDE

Open the settings menu (hidden in "..." on the top right), click the settings button on the last line in front of "MCP".

<img src="https://mintcdn.com/fibery/RPlQYSukIff8siBE/images/17bc1915-e1da-456d-b375-42b0cd4f028b.png?fit=max&auto=format&n=RPlQYSukIff8siBE&q=85&s=9c1c61d27e920dd26a92a51af671a665" alt="Windsurf MCP settings button" width="456" height="744" data-path="images/17bc1915-e1da-456d-b375-42b0cd4f028b.png" />

Then use this config in `mcp_config.json`:

```json theme={null}
{
  "mcpServers": {
    "fibery": {
      "serverUrl": "https://mcp.fibery.io/mcp"
    }
  }
}
```

### VS Code (GitHub Copilot)

Locate your MCP client configuration or find the option "MCP: Add Server" via Cmd+Shift+P, then add the following configuration to your `mcp.json`:

```json theme={null}
{
  "servers": {
    "Fibery": {
      "url": "https://mcp.fibery.io/mcp",
      "type": "http"
    }
  },
  "inputs": []
}
```

### Zed IDE

1. Open Agent Panel on the right.

2. In the menu hidden in "...", click on "Add Custom Server".

   <img src="https://mintcdn.com/fibery/RPlQYSukIff8siBE/images/c486c015-70f0-4c3f-9821-e662aadb4313.png?fit=max&auto=format&n=RPlQYSukIff8siBE&q=85&s=a492577024d9070baa3160b0efea3110" alt="Zed Add Custom Server menu" width="754" height="580" data-path="images/c486c015-70f0-4c3f-9821-e662aadb4313.png" />

3. Use this configuration:

   ```json theme={null}
   {
     "Fibery": {
       "command": "npx",
       "args": ["-y", "mcp-remote", "https://mcp.fibery.io/mcp", "--transport", "http-only"],
       "env": {}
     }
   }
   ```

4. Authenticate using "Add Server".

   <img src="https://mintcdn.com/fibery/RPlQYSukIff8siBE/images/4ca8210f-5581-4760-b940-7547b3c5c500.png?fit=max&auto=format&n=RPlQYSukIff8siBE&q=85&s=03806fa85145087d489fe38fbeafc745" alt="Zed Add Server authentication" width="1074" height="924" data-path="images/4ca8210f-5581-4760-b940-7547b3c5c500.png" />

### n8n

1. Select the MCP Client node and configure it with the Fibery MCP Server URL: `https://mcp.fibery.io/mcp`

   <img src="https://mintcdn.com/fibery/RPlQYSukIff8siBE/images/28ca3015-504e-492e-b3bb-922640a6260e.png?fit=max&auto=format&n=RPlQYSukIff8siBE&q=85&s=3df0c5c436d3d4b118d79ad6fccb6df9" alt="n8n MCP Client node configuration" width="840" height="620" data-path="images/28ca3015-504e-492e-b3bb-922640a6260e.png" />

2. Click on Edit for "Credential for MCP OAuth2 API", fill out the details, and connect your account.

   <img src="https://mintcdn.com/fibery/RPlQYSukIff8siBE/images/1d90fbb7-a5c0-4888-8ff3-5bb2053f92e8.png?fit=max&auto=format&n=RPlQYSukIff8siBE&q=85&s=9c8045ad58e35862850dbb1e64792e8e" alt="n8n OAuth2 credential form" width="2326" height="1392" data-path="images/1d90fbb7-a5c0-4888-8ff3-5bb2053f92e8.png" />

### Make.com

1. Create a new connection
2. From the MCP Server dropdown, select "New MCP Server"
3. Enter `https://mcp.fibery.io/mcp` in the URL field (leave "API Key / Access token" field empty)
4. Save and complete the authentication process.
