MCP Server

The Model Context Protocol (MCP) server allows AI assistants like Claude to interact directly with Reactly's build infrastructure.

Overview

By connecting the Reactly MCP server to your AI tool of choice, you enable the "Build" tool capability. This allows the AI to trigger production builds for your projects, monitor progress, and provide deployment links directly within the chat interface.

Installation

Clone the Reactly repository and install dependencies for the MCP server:

# Clone the repo

git clone https://github.com/mubashirhassanpk/reactly

# Navigate to MCP directory

cd reactly-site/mcp-server

# Install dependencies

npm install

Claude Desktop Setup

To use Reactly with Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "reactly": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/index.js"],
      "env": {
        "REACTLY_API_KEY": "YOUR_API_KEY",
          "REACTLY_API_URL": "https://reactly.site/api/builder"

      }
    }
  }
}

Cursor Setup

To use Reactly within Cursor, you can add it as a custom MCP server in your settings.

  1. Open Cursor Settings (Cmd + ,)
  2. Navigate to Features > MCP
  3. Click + Add Server
  4. Set the name to Reactly
  5. Select type command
  6. Enter the command:
node /absolute/path/to/mcp-server/index.js

Tools Reference

build_project

Active

Trigger a build for a local ZIP file or a GitHub repository.

githubUrlstring (optional)
filePathstring (optional)
buildCommandstring (optional)