Guide
Fibery MCP server should work in any MCP Client.
Claude (Desktop/Web)
Navigate to Settings → Connectors → Add custom connector
Fill in the connector details and submit:
After adding the connector, Claude will automatically initiate the OAuth 2.0 authentication process (no API tokens needed). If no luck, click Connect button for Fibery tool and try again.
ChatGPT
Navigate to Settings → Connectors → Advanced Settings
Enable "Developer mode" to allow MCP servers with any set of tools
Navigate back to Settings → Connectors and hit "Create" in the top right corner
Fill in the connector details and submit:
After adding the connector, OpenAI will automatically initiate the OAuth 2.0 authentication process (no API tokens needed). If no luck, click Connect button for Fibery tool and try again.
Le Chat
Go to Intelligence → Connectors
Click "+ Add Connector" and select "Custom MCP Connector". Add name, Connector Server & Description
Complete authentication by hitting Connect
Claude Code
Open up your terminal and run 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.
codex mcp add --url https://mcp.fibery.io/mcp Fibery
OpenCode
Locate your OpenCode configuraiton file (usually under ~/.config/opencode/opencode.json)
Add the following configuraiton to this file (this is a workaround, since opencode does not support remote http streamable for now)
{
"mcp": {
"fibery": {
"type": "local",
"command": ["npx", "-y", "mcp-remote", "https://mcp.fibery.io/mcp", "--transport", "http-only"],
"timeout": 60000
}
}
}
Run opencode mcp list to authorize
AugmentCode
Run this command, then authenticate via /mcp when Auggie is running.
auggie mcp add --command npx --args "-y mcp-remote https://mcp.fibery.io/mcp" Fibery
N8N
Select MCP Client node, and fill it in like so:
Click on Edit for "Credential for MCP OAuth2 API", and fill them out, and connect your account:
Make.com
Create a new connection
From the MCP Server dropdown, select "New MCP Server"
Enter https://mcp.fibery.io/mcp in URL field (leave "API Key / Access token" field empty)
Save & complete the authentication process
Cursor IDE Setup
Locate your MCP client configuration file (usually under .cursor/mcp.json:
Add the following configuration to your mcp.json file:
{
"mcpServers": {
"Fibery": {
"url": "https://mcp.fibery.io/mcp"
}
}
}
After adding the connector, Cursor will ask you to log in your Fibery workspace using OAuth 2.0 authentication process.
Windsurf IDE
In menu hidden in "…" on the top right, click on settings button on the last line in front of "MCP"
Use this config in mcp_config.json file. Authentication should:
{
"mcpServers": {
"fibery": {
"serverUrl": "https://mcp.fibery.io/mcp"
}
}
}
VS Code IDE (GitHub Copilot)
Locate your MCP client configuration or find option "MCP: Add Server" via Cmd+Shift+P menu
Add the following configuration to your mcp.jsonfile:
{
"servers": {
"Fibery": {
"url": "https://mcp.fibery.io/mcp",
"type": "http"
}
},
"inputs": []
}
Zed IDE
Open Agent Panel on the right
In menu hidden in "…", click on "Add Custom Server"
Use this configuration (it is a work-around since Zed Remote MCP Client version uses protocol from March of 2025):
{
/// The name of your MCP server
"Fibery": {
/// The command which runs the MCP server
"command": "npx",
/// The arguments to pass to the MCP server
"args": ["-y", "mcp-remote", "https://mcp.fibery.io/mcp", "--transport", "http-only"],
/// The environment variables to set
"env": {}
}
}
Authenticate using "Add Server"