activepieces
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Source#
- Repository: activepieces/activepieces
- Last source update: 2026-04-05
- Last verified: 2026-04-05
Tags#
Integration notes#
Repository is focused on tool/server interoperability; wrap in bounded worker contracts for production use.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: activepieces-repo-derived-worker
name: activepieces Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/activepieces/
source_repository: https://github.com/activepieces/activepieces
repository_default_branch: main
repository_language: TypeScript
repository_license: NOASSERTION
repository_updated_at: 2026-04-05
worker_mode: tool-gateway-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.9
derived_on: 2026-04-05
tags:
- ai-agent
- ai-agent-tools
- ai-agents
- ai-agents-framework
- mcp
- mcp-server
---
# activepieces Repo-Derived Worker
## Repo-derived summary
- Registry summary: AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
- Repository description: AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
- Stars (snapshot): 21,574
- Primary language: TypeScript
- Worker mode classification: tool-gateway-worker
## Extracted from
- https://github.com/activepieces/activepieces
- https://github.com/activepieces/activepieces/blob/main/README.md
- https://www.activepieces.com/pieces
- https://www.npmjs.com/search?q=%40activepieces
- https://www.activepieces.com/docs/build-pieces/building-pieces/overview
## Evidence notes (from repository text)
- README summary paragraph: Documentation 🌪️ Create a Piece 🖉 Deploy 🔥 Join Discord
- All-in-one AI automation designed to be **extensible** through a **type-safe** pieces framework written in **TypeScript**.
- When you contribute pieces to Activepieces they become automatically available as MCP servers that you can use with LLMs through Claude Desktop, Cursor or Windsurf!
- - **🛠️ Largest open source MCP toolkit**: All our pieces (280+) are available as MCP that you can use with LLMs on Claude Desktop, Cursor or Windsurf.
- - **🤖 AI-First**: Native AI pieces let you experiment with various providers, or create your own agents using our AI SDK to help you build flows inside the builder.
- - **🏢 Enterprise-Ready**: Developers set up the tools, and anyone in the organization can use the no-code builder. Full customization from branding to control.
## Installation hints found in README
- No explicit package installation command detected in README text.
## worker.md contract (derived starter)
Purpose: Expose repository-supported tool/server capabilities behind a bounded worker interface.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"request_id",
"operation",
"payload"
],
"properties": {
"request_id": {
"type": "string"
},
"operation": {
"type": "string"
},
"payload": {
"type": "object"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"request_id",
"status",
"result"
],
"properties": {
"request_id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"result": {
"type": "object"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: request_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
activepieces-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/activepieces/
Source URL: https://github.com/activepieces/activepieces