Buildable

by chunkydotdev

235 downloads
Not rated
GitHub

About

Official MCP server for Buildable AI-powered development platform. Enables AI assistants to manage tasks, track progress, get project context, and collaborate with humans on software projects.

Details

Author
chunkydotdev
Downloads
235
Categories
Developer Tools, Project Management, AI, Communication

- Full project context, plans, and task details
- Autonomous task starting, progress updates, and completion
- Human collaboration through discussions for blockers
- Real-time live progress and status monitoring
- Type‑safe API with comprehensive TypeScript definitions
- Ready for Claude Desktop and Cursor AI

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Buildable
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the MCP server via npm install -g @bldbl/mcp, obtain an API key from your project’s AI Assistants settings at bldbl.dev, then configure your AI assistant (Claude Desktop or Cursor AI) with a JSON config supplying BUILDABLE_API_KEY, BUILDABLE_PROJECT_ID, and BUILDABLE_AI_ASSISTANT_ID. After setup, the assistant can call tools such as get_project_context, get_next_task, start_task, update_progress, complete_task, create_discussion, and health_check.

get_project_context

get_next_task

start_task

update_progress

complete_task

create_discussion

health_check

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "buildable": {
            "buildable": {
                "command": "npx",
                "args": [
                    "-y",
                    "@bldbl/mcp"
                ],
                "env": {
                    "BUILDABLE_API_KEY": "<YOUR-API-TOKEN>",
                    "BUILDABLE_PROJECT_ID": "<YOUR-PROJECT-ID>",
                    "BUILDABLE_AI_ASSISTANT_ID": "<NAME-YOUR-ASSISTANT>"
                }
            }
        }
    }
}

McpServers

{
    "buildable": {
        "command": "npx",
        "args": [
            "-y",
            "@bldbl/mcp"
        ],
        "env": {
            "BUILDABLE_API_KEY": "<YOUR-API-TOKEN>",
            "BUILDABLE_PROJECT_ID": "<YOUR-PROJECT-ID>",
            "BUILDABLE_AI_ASSISTANT_ID": "<NAME-YOUR-ASSISTANT>"
        }
    }
}

export BUILDABLE_API_URL="https://bldbl.dev/api" # API endpoint (default)


Why AI Assistant ID matters: This helps you track which AI assistant is doing what work in your project dashboard.

CLI Usage

You can also run the MCP server directly:

bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.