Activepieces is an open source automation tool that offers a type-safe framework for creating integrations through "pieces." These pieces are available as Model Context Protocol (MCP) servers that you can use with LLMs through applications like Claude Desktop, Cursor, or Windsurf.
To get started with Activepieces as an MCP server, follow these steps:
Before installation, ensure you have:
# Clone the repository
git clone https://github.com/activepieces/activepieces.git
# Navigate to the project directory
cd activepieces
# Install dependencies
npm install
Once installed, you can start the Activepieces MCP server:
npm start
This will launch the server and make it available for connection through LLM tools.
You can connect your Activepieces MCP server to various LLM tools:
Claude Desktop: Open Claude Desktop and add a new MCP connection pointing to your Activepieces server URL.
Cursor: Configure Cursor to use your Activepieces MCP server as a context source.
Windsurf: Add your Activepieces server as an integration in Windsurf settings.
Activepieces comes with over 280 pre-built integrations (called "pieces") that are available as MCP servers. These include connections to popular services like:
You can build automation flows using the visual builder:
Activepieces offers several advanced capabilities:
If you encounter issues while using Activepieces MCP server:
If you need assistance with Activepieces:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "activepieces" '{"command":"npx","args":["-y","@activepieces/cli"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:
{
"mcpServers": {
"activepieces": {
"command": "npx",
"args": [
"-y",
"@activepieces/cli"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json2. Add this to your configuration file:
{
"mcpServers": {
"activepieces": {
"command": "npx",
"args": [
"-y",
"@activepieces/cli"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect