
GibsonAI Server
GibsonAI's MCP server
Installation
Installing for Claude Desktop
Manual Configuration Required
This MCP server requires manual configuration. Run the command below to open your configuration file:
npx mcpbar@latest edit -c claude
This will open your configuration file where you can add the GibsonAI Server MCP server manually.
GibsonAI MCP Server
The GibsonAI Model Context Protocol Server provides a set of tools to MCP Clients like Cursor, Windsurf, or Claude Desktop. These clients can use these tools to interact with your GibsonAI projects and databases using your natural language instructions.
You can accomplish various tasks with GibsonAI directly in your favorite IDE, for example:
- Create new GibsonAI projects and design database schemas
- View project structure, schema diagrams, a summary of tables and relationships
- Apply schema changes and trigger automatic migrations
- Run SQL queries against your database
- Deploy projects to development or production environments
- Seed tables with mock data
- Build a full-stack apps
Prompt Examples:
- “Create a blogging platform schema with users, posts, and comments.”
- “Add a foreign key from bookings to payments.”
- “Generate mock data for the boooking destination table.”
- “Fetch connection string for my blogging database”
- “Explain how the tables are related in this project.”
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
Connect MCP Clients
Cursor Setup 
Click the Add to Cursor
button above or go to Cursor
→ Settings
→ Cursor Settings
→ MCP Tools
and 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
and click Add server
in the Model 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
and click Edit Config
Open the claude_desktop_config.json
file and update the configuration to include the following:
{
"mcpServers": {
"gibson": {
"command": "uvx",
"args": ["--from", "gibson-cli@latest", "gibson", "mcp", "run"]
}
}
}
See the Claude Desktop MCP docs for more information.
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"]
}
}
}
- Save the file. Cline should reload the configuration automatically.
Distribution
Note that this repo is for documentation purposes only. Our MCP server code lives within our CLI, which allows us to share authentication + API interaction logic with the CLI and have a single distribution. This means we're able to ship new features to you faster.
Stars
9Forks
4Last commit
6 days agoRepository age
2 months
Auto-fetched from GitHub .
MCP servers similar to GibsonAI Server:

Stars
Forks
Last commit

Stars
Forks
Last commit

Stars
Forks
Last commit