Detected country: US
logo
Sign InGet Early Access
GuideRecipesDeveloper
‌
‌
‌
logo

Powered by

  • Home
  • Developer Docs
  • How do playbooks connect to external systems?

How do playbooks connect to external systems?

1min read

Share

TL;DR: Playbooks reach the outside world three ways: connect an external MCP server and call its tools, make direct HTTP calls (or define reusable custom HTTP tools), and use SDKs inside Code steps. Credentials are always supplied from Secrets — never hardcoded — and referenced with ${VAR} in headers and steps.

Who this is for

Developers wiring playbooks to APIs, SaaS tools, databases, and SDKs.

What are my options?

ApproachUse it forDoc
MCP connectorsServices with an MCP server (Slack, Linear, GitHub, Stripe, …)Connect external MCP servers
HTTP and custom toolsAny REST/HTTP API, including ones you wrap as reusable toolsHTTP and custom tools
SDKs in Code stepsCalling an SDK (including AI SDKs) from codeHTTP and custom tools

All of these read credentials from Secrets.

How do I choose?

  • If the service publishes an MCP server, connect it — you get typed tools with OAuth or API-key auth and no glue code.
  • If it's a plain REST API, use an HTTP step, and promote it to a custom tool when several playbooks need it.
  • If you need data transforms, batching, or an SDK, do it in a Code step.

Related articles

  • How do I connect an MCP server?
  • What is a connector and how do I browse the registry?
  • How do I edit steps (Code and HTTP)?
  • How do I store credentials with Secrets?
Nested Articles

How do I call external APIs and SDKs from a playbook?

How do I connect external MCP servers to playbooks?

How do I use secrets and env vars in steps?

Share