by PipedreamHQ
Connect APIs quickly with a free, hosted integration platform that enables event‑driven automations across 1,000+ services and supports custom code in Node.js, Python, Go, or Bash.
Pipedream provides a cloud‑hosted environment for building integrations, event sources, actions, and workflows without managing servers. It offers a catalog of pre‑built components for thousands of SaaS apps and lets developers run arbitrary code in popular languages.
Q: Is there a limit on the number of workflows?
A: The free tier imposes runtime and execution limits (see the Limits docs), but you can create unlimited workflows within those constraints.
Q: Can I run my own instance?
A: Pipedream is offered as a hosted service; the repository contains component source code but does not provide a self‑hosted MCP server package.
Q: Which languages are supported for custom code?
A: Node.js, Python, Go, and Bash. You can import any package from the respective language’s package manager.
Q: How do I secure my workflows?
A: Use the built‑in authentication mechanisms for each integrated app, store secrets in environment variables, and rely on SOC 2‑validated infrastructure.
Q: Where can I find community‑built actions?
A: Browse the Pipedream marketplace or the components
directory in the GitHub repo.
Pipedream is an integration platform for developers.
Pipedream provides a free, hosted platform for connecting apps and developing event-driven automations. The platform has over 1,000 fully-integrated applications, so you can use pre-built components to quickly send messages to Slack, add a new row to Google Sheets, and more. You can also run any Node.js, Python, Golang, or Bash code when you need custom logic. Pipedream has demonstrated SOC 2 compliance and can provide a SOC 2 Type 2 report upon request (please email support@pipedream.com).
This repo contains:
This README
explains the key features of the platform and how to get started.
To get support, please visit https://pipedream.com/support.
Click the image below to watch a brief demo on YouTube.
Workflows are sequences of linear steps triggered by an event (like an HTTP request, or when a new row is added to a Google sheet). You can quickly develop complex automations using workflows and connect to any of our 1,000+ integrated apps.
See our workflow quickstart to get started.
Event Sources watch for new data from services like GitHub, Slack, Airtable, RSS and more. When a source finds a new event, it emits it, triggering any linked workflows.
You can also consume events emitted by sources using Pipedream's REST API or a private, real-time SSE stream.
When a pre-built source doesn't exist for your use case, you can build your own. Here is the simplest event source: it exposes an HTTP endpoint you can send any request to, and prints the contents of the request when invoked:
export default {
name: "http",
version: "0.0.1",
props: {
http: "$.interface.http",
},
run(event) {
console.log(event); // event contains the method, payload, etc.
},
};
You can find the code for all pre-built sources in the components
directory. If you find a bug or want to contribute a feature, see our contribution guide.
Actions are pre-built code steps that you can use in a workflow to perform common operations across Pipedream's 500+ API integrations. For example, you can use actions to send email, add a row to a Google Sheet, and more.
You can create your own actions, which you can re-use across workflows. You can also publish actions to the entire Pipedream community, making them available for anyone to use.
Here's an action that accepts a name
as input and prints it to the workflow's logs:
export default {
name: "Action Demo",
description: "This is a demo action",
key: "action_demo",
version: "0.0.1",
type: "action",
props: {
name: {
type: "string",
label: "Name",
},
},
async run() {
return `hello ${this.name}!`;
},
};
You can find the code for all pre-built actions in the components
directory. If you find a bug or want to contribute a feature, see our contribution guide.
Most integrations require custom logic. Code is often the best way to express that logic, so Pipedream allows you to run custom code in a workflow using:
You can import any package from the languages' package managers by declaring the imports directly in code. Pipedream will parse and download the necessary dependencies.
// Node.js
import axios from "axios";
# Python
import pandas as pd
// Go
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
You can also connect to any Pipedream connected app in custom code steps. For example, you can connect your Slack account and send a message to a channel:
import { WebClient } from "@slack/web-api";
export default defineComponent({
props: {
// This creates a connection called "slack" that connects a Slack account.
slack: {
type: "app",
app: "slack",
},
},
async run({ steps, $ }) {
const web = new WebClient(this.slack.$auth.oauth_access_token);
return await web.chat.postMessage({
text: "Hello, world!",
channel: "#general",
});
},
});
Destinations, like actions, abstract the connection, batching, and delivery logic required to send events to services like Amazon S3, or targets like HTTP and email.
For example, sending data to an Amazon S3 bucket is as simple as calling $send.s3()
:
$send.s3({
bucket: "your-bucket-here",
prefix: "your-prefix/",
payload: event.body,
});
Pipedream supports the following destinations:
Thank you to everyone who has contributed to the Pipedream codebase. We appreciate you!
Pipedream has a generous free tier. You can run sources and workflows for free within the limits of the free tier. If you hit these limits, you can upgrade to one of our paid tiers.
The Pipedream platform imposes some runtime limits on sources and workflows. Read more about those in our docs.
Before adding an issue, please search the existing issues or reach out to our team to see if a similar request already exists.
If an issue exists, please add a reaction or add a comment detailing your specific use case.
If an issue doesn't yet exist and you need to create one, please use the issue templates.
You can read about our platform security and privacy here.
If you'd like to report a suspected vulnerability or security issue, or have any questions about the security of the product, please contact our security team at security@pipedream.com.
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by Skyvern-AI
Automates browser‑based workflows by leveraging large language models and computer‑vision techniques, turning natural‑language prompts into fully functional web interactions without writing custom scripts.
by ahujasid
Enables Claude AI to control Blender for prompt‑assisted 3D modeling, scene creation, and manipulation via a socket‑based Model Context Protocol server.
by grab
Enables Cursor AI to read and programmatically modify Figma designs through a Model Context Protocol integration.
by ahujasid
Enables Claude AI to control Ableton Live in real time, allowing AI‑driven creation, editing, and playback of tracks, clips, instruments, and effects through a socket‑based server.
by leonardsellem
Provides tools and resources to enable AI assistants to manage and execute n8n workflows via natural language commands.
by GongRzhe
Provides a Model Context Protocol server that enables AI assistants to send, read, search, and organize Gmail messages, supporting attachments, label and filter management, and automatic OAuth2 authentication.
by mario-andreschak
A unified platform that manages AI models, MCP servers, and complex workflows, offering secure key storage, visual flow building, and an interactive chat UI.
by tevonsb
Provides a Model Context Protocol server that exposes Home Assistant functionality through a comprehensive REST and SSE API, enabling natural‑language control of smart‑home devices.
by taazkareem
Provides a Model Context Protocol server that lets AI agents read, create, update, and organize ClickUp tasks, lists, spaces, tags, documents, and members through a unified set of tools.