Skip to main content

MCP Setup Guide

This guide will help you set up Model Context Protocol (MCP) integration with Buildable.

Prerequisites

  • Active Buildable account
  • Supported MCP client (Claude Desktop, VSCode with Continue, etc.)

Configuration

Step 1: Get Your MCP Server URL

  1. Log into your Buildable account
  2. Navigate to Project Settings > Integrations
  3. Copy your unique MCP server URL

Step 2: Configure Your MCP Client

Add the Buildable MCP server to your client configuration:

{
"mcpServers": {
"buildable": {
"command": "npx",
"args": ["@buildable/mcp-server"],
"env": {
"BUILDABLE_API_KEY": "your-api-key-here",
"BUILDABLE_PROJECT_ID": "your-project-id"
}
}
}
}

Step 3: Verify Connection

Test the connection by asking your MCP client to list available tools. You should see Buildable task management tools.

Next Steps