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.
- Open Cursor Settings (Cmd + ,)
- Navigate to Features > MCP
- Click + Add Server
- Set the name to Reactly
- Select type command
- Enter the command:
Tools Reference
build_project
ActiveTrigger a build for a local ZIP file or a GitHub repository.