1. Conduid
  2. Automation
  3. Bytechef
MCP server · Automation

Bytechef

Open-source, AI-native, low-code platform for API orchestration, workflow automation, and AI agent integration across internal systems and SaaS products.

Unclaimed NOASSERTION last commit 6 months ago integrationsai-agentsembedded-ipaasipaashacktoberfestapiaiautomation
87Excellent

Scored 4 days ago · breakdown

About Bytechef

Bytechef is an MCP server published by bytechefhq in the Automation category: open-source, AI-native, low-code platform for API orchestration, workflow automation, and AI agent integration across internal systems and SaaS products. It has been installed 0 times through Conduid.

The repository has 733 stars and 132 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx bytechef

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Bytechef

Powered by Claude · Grounded in docs

I know everything about Bytechef. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.31.4v0.31.4 · 13 Aug 2026ByteChef v0.31.4 This release improves knowledge-base support, integration reliability, workflow editing, and deployment resilience. Highlights Added multi-tenant knowledge-base support and lazy loading for document chunk content. Improved…
v0.31.1v0.31.1 · 14 Jul 2026ByteChef v0.31.1 This release expands AI provider support, reworks how MCP components and connections are presented, hardens the workflow editor against a number of crash and freeze conditions, and lays the groundwork for role-based…
v0.30.0v0.30.0 · 26 Jun 2026[Full changelog: v0.29.1...v0.30.0](https://github.com/bytechefhq/bytechef/compare/v0.29.1...v0.30.0) Highlights:** Undo/redo lands in the workflow editor, node editing gets cut + context-menu improvements, the new PagerDuty connector…
v0.29.1v0.29.1 · 15 Jun 2026Full Changelog:** https://github.com/bytechefhq/bytechef/compare/v0.29.0...v0.29.1 Highlights AI skill management moved from Enterprise to Community Edition** (#5217). MongoDB connector + MongoDB Atlas Vector Search** components added…
v0.29.0v0.29.0 · 15 Jun 2026Full Changelog:** https://github.com/bytechefhq/bytechef/compare/v0.27.0...v0.29.0 Highlights 30+ new connectors** added across CRM, marketing, forms, and AI categories. All major LLM providers verified** end-to-end (Anthropic,…

README

License Docker Pulls Build Status Discord

API integration and workflow automation platform

Open-source, low-code, extendable API integration & workflow automation platform

Documentation · Discord · Connect on X

Installation

Docker Compose (Fastest Setup)

Requirement: Docker Desktop

This is the fastest way to start ByteChef. Download the docker-compose.yml file from the repository:

curl -O https://raw.githubusercontent.com/bytechefhq/bytechef/master/docker-compose.yml
docker compose -f docker-compose.yml up

Both PostgreSQL database and ByteChef containers will start automatically.

Docker (Manual Setup)

If Docker Compose isn't supported in your environment, follow these steps:

1. Create Docker Network

docker network create -d bridge bytechef_network

2. Start PostgreSQL Container

docker run --name postgres -d -p 5432:5432 \
    --env POSTGRES_USER=postgres \
    --env POSTGRES_PASSWORD=postgres \
    --hostname postgres \
    --network bytechef_network \
    -v /opt/postgre/data:/var/lib/postgresql/data \
    postgres:15-alpine

3. Start ByteChef Container

docker run --name bytechef -it -p 8080:8080 \
    --env BYTECHEF_DATASOURCE_URL=jdbc:postgresql://postgres:5432/bytechef \
    --env BYTECHEF_DATASOURCE_USERNAME=postgres \
    --env BYTECHEF_DATASOURCE_PASSWORD=postgres \
    --env BYTECHEF_SECURITY_REMEMBER_ME_KEY=e48612ba1fd46fa7089fe9f5085d8d164b53ffb2 \
    --network bytechef_network \
    docker.bytechef.io/bytechef/bytechef:latest

Note: Use -d flag instead of -it to run in detached mode.

Features

  • Visual Workflow Editor: Build and visualize workflows by dragging and dropping components
  • Event-Driven & Scheduled Workflows: Automate with real-time event-driven workflows via simple trigger definitions
  • Multiple Flow Controls: Use condition, switch, loop, each, parallel, and more
  • Built-In Code Editor: Write workflow definitions in JSON and code blocks in Java, JavaScript, Python, and Ruby
  • 200+ Built-In Components: Extract data from any database, SaaS applications, internal APIs, or cloud storage
  • Extendable: Develop custom connectors in Java, JavaScript, Python, or Ruby
  • AI Ready: Built-in AI components for running multiple AI models and algorithms
  • Developer Ready: Expose workflows as APIs; platform handles authentication
  • Version Control Friendly: Push workflows to Git directly from ByteChef UI
  • Self-Hosted: Install on-premise for complete control over execution and data

Getting Started With ByteChef's Self-Hosted Instance

  1. Start ByteChef with Docker Compose:

    curl -O https://raw.githubusercontent.com/bytechefhq/bytechef/master/docker-compose.yml
    docker compose -f docker-compose.yml up
    
  2. Open http://localhost:8080/login

  3. Click Create Account to set up your user

  4. Sign in with your credentials

What is ByteChef?

ByteChef is an open-source, low-code, extendable API integration and workflow automation platform that helps you:

As an automation solution - Integrate and build automation workflows across your SaaS apps, internal APIs, and databases.

As an embedded solution - Build integrations directly into your SaaS product, allowing your customers to connect applications they use with your product.

Creating your first workflow

Using the UI Editor

  1. Navigate to the Projects section
  2. Click New Project
  3. Fill the necessary credentials
  4. Create a new workflow in the project
  5. Add a trigger and components you want to work with
  6. Connect them to define your workflow logic
  7. Configure each component's parameters in the properties panel
  8. Test your workflow
  9. Deploy

Contributing

ByteChef is Open Source under the Apache License v2.0. If you would like to contribute to the software, read the contributing guide to get started.

Roadmap

Check out our public roadmap to see what we're working on next.


License

ByteChef is released under the Apache License v2.0.

Copyright 2025 ByteChef

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

Contributors

Contributors


Credits

ByteChef started as a fork of Piper, an open-source, distributed workflow engine.

README mirrored from the source repository 4 days ago. The original is authoritative.

Questions

About Bytechef

How do I install Bytechef?

Run npx bytechef, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Bytechef safe to use with an AI agent?

Its trust score is 87 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Bytechef still maintained?

Yes — the latest release is v0.31.4 (13 Aug 2026), and the last commit was 6 months ago. The repository has 733 stars and 0 open issues.