The GibsonAI MCP Server allows you to connect various Model Context Protocol (MCP) compatible AI tools to GibsonAI.
This guide covers the setup for the following MCP Clients:
Prerequisites
- A GibsonAI account.
- UV installed.
Authentication
You'll need to ensure you're logged in to the Gibson CLI before the MCP server will work.
uvx --from gibson-cli@latest gibson auth login
Cursor Setup
- Go to
Cursor
→Settings
→Cursor Settings
→MCP Tools
. - Click
New MCP Server
. - Update the configuration to include the following:
{
"mcpServers": {
"gibson": {
"command": "uvx",
"args": ["--from", "gibson-cli@latest", "gibson", "mcp", "run"]
}
}
}
Windsurf Setup
- Go to
Windsurf
→Settings
→Windsurf Settings
→Cascade
. - Click
Add server
in theModel Context Protocol (MCP) Servers
section. - In the modal, click
Add custom server
. - Update the configuration to include the following:
{
"mcpServers": {
"gibson": {
"command": "uvx",
"args": ["--from", "gibson-cli@latest", "gibson", "mcp", "run"]
}
}
}
- Open the
Cascade
chat and, if necessary, refresh the MCP servers.
Claude Desktop Setup
- Go to
Claude
→Settings
→Developer
. - Click
Edit Config
. - Open the
claude_desktop_config.json
file. - Update the configuration to include the following:
{
"mcpServers": {
"gibson": {
"command": "uvx",
"args": ["--from", "gibson-cli@latest", "gibson", "mcp", "run"]
}
}
}
Claude Code Setup
claude mcp add gibson -- uvx --from gibson-cli@latest gibson mcp run
claude mcp get gibson
gibson:
Scope: Local (private to you in this project)
Type: stdio
Command: uvx
Args: --from gibson-cli@latest gibson mcp run
Environment:
To remove this server, run: claude mcp remove "gibson" -s local
VS Code + GitHub Copilot Setup
- Create or open the
.vscode/mcp.json
file. - Update the configuration to include the following:
{
"inputs": [],
"servers": {
"gibson": {
"type": "stdio",
"command": "uvx",
"args": ["--from", "gibson-cli@latest", "gibson", "mcp", "run"]
}
}
}
See the official GitHub Copilot MCP docs for more information.
Cline (VS Code Extension) Setup
-
Open Cline in VS Code:
Go to Sidebar → Cline icon. -
To configure MCP Servers in Cline, you need to modify the
cline_mcp_settings.json
file. Click the MCP Servers icon → go to Installed → click Configure MCP Servers to open the configuration file. -
Add the following
gibson
server entry inside themcpServers
object:
{
"mcpServers": {
"gibson": {
"command": "uvx",
"args": ["--from", "gibson-cli@latest", "gibson", "mcp", "run"]
}
}
}
See the Claude Desktop MCP docs for more information.
Need help?
Join our Discord Server to ask questions or see what others are doing with GibsonAI.