> ## Documentation Index
> Fetch the complete documentation index at: https://docs.patchline.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Connectors

> Aria connects to the tools your team already uses - Instagram, YouTube, Google Drive, ClickUp, Notion, Slack, and more - so music strategy can move into action.

export const TierBadge = ({tier}) => {
  const styles = {
    free: {
      label: "Free",
      color: "#A1A1AA"
    },
    starter: {
      label: "Starter+",
      color: "#00E6E2"
    },
    pro: {
      label: "Pro+",
      color: "#0068FF"
    },
    scale: {
      label: "Scale+",
      color: "#7A5BFF"
    },
    enterprise: {
      label: "Enterprise",
      color: "#FF7A59"
    },
    all: {
      label: "All plans",
      color: "#22C55E"
    }
  };
  const t = styles[tier?.toLowerCase()] ?? styles.all;
  return <span style={{
    display: "inline-flex",
    alignItems: "center",
    gap: "4px",
    padding: "2px 10px",
    borderRadius: "999px",
    border: `1px solid ${t.color}40`,
    background: `${t.color}1A`,
    color: t.color,
    fontSize: "12px",
    fontWeight: 600,
    fontFamily: "var(--font-family-mono)",
    verticalAlign: "middle"
  }}>
      {t.label}
    </span>;
};

export const AICallout = ({page}) => {
  const slug = page ?? "";
  const mdUrl = `https://docs.patchline.ai${slug}.md`;
  return <div style={{
    marginTop: "32px",
    padding: "16px 20px",
    borderRadius: "12px",
    border: "1px solid rgba(0,230,226,0.25)",
    background: "linear-gradient(135deg, rgba(0,230,226,0.08), rgba(0,104,255,0.05))",
    color: "inherit",
    fontSize: "14px",
    lineHeight: 1.6
  }}>
      <strong style={{
    display: "block",
    marginBottom: "6px",
    color: "#00E6E2"
  }}>
        For AI agents reading this page
      </strong>
      The canonical machine-readable version of this page is at{" "}
      <a href={mdUrl}>
        <code>{mdUrl}</code>
      </a>
      . For product actions, connect to{" "}
      <code>www.patchline.ai/api/mcp/v1</code>
      {" "}and call MCP <code>tools/list</code> for the current tool schema.
      Rules for navigating these docs:{" "}
      <a href="https://docs.patchline.ai/AGENTS.md">
        <code>docs.patchline.ai/AGENTS.md</code>
      </a>
      .
    </div>;
};

Everything in Patchline is interconnected. **Connectors** extend Aria
into the third-party tools you already use, so a single prompt can pull
from your music data, find campaign assets, create follow-up work, and
send strategy updates to the team.

<TierBadge tier="all" />   Connector actions consume AI credits when Aria calls into a third-party tool.

## What a connector is

A connector is a bridge between Aria and an external service. Once a
service is connected, Aria can use it inside a chat:

* *"Find the Google Drive folder with cover options for Sleeper and attach the best links to the release brief."*
* *"Create a ClickUp task for tomorrow: pitch Lush Sounds curator with the final version."*
* *"Pull recent YouTube performance for this track and summarize what should shape next week's campaign."*
* *"Send the release strategy report to the marketing channel in Slack."*

## What's available

| Connector     | What Aria can do                                                                                          |
| ------------- | --------------------------------------------------------------------------------------------------------- |
| **Instagram** | Read your profile, post media + captions, fetch insights, read comments                                   |
| **YouTube**   | Read channel data, fetch video stats, read comments                                                       |
| **ClickUp**   | Create tasks, attach context from a release, link campaigns to your task board                            |
| **Notion**    | Read pages, append entries, sync release notes                                                            |
| **Discord**   | Read channel context, post messages                                                                       |
| **Slack**     | **Aria on Slack** (GA) — chat with Aria from your team channels; Patchline can also post updates to Slack |

The exact set Aria can call depends on what your workspace has enabled.
If you don't see a connector you want, ask in support and we'll
prioritize.

## How to connect

Open Patchline, click **+**, and choose the connector you want to add.
You can also go to **Settings -> Connectors** and connect the service
from there.

If you are already chatting with Aria, ask for the connector directly:

> *"Connect Google Drive."*

Aria gives you the authenticated link for that service. After you
complete the connection, future requests can use that connector from
inside Aria.

## Examples

### Release plan -> ClickUp tasks

> *"For each remaining task in my Sleeper release plan, create a ClickUp
> task on my Active Releases list with the due date."*

Aria reads the release plan from your project's AI Campaign Planner,
iterates each open task, and creates them in ClickUp via the connector.

### Audience signal -> campaign strategy

> *"Look at the latest audience and video performance signals for Sleeper
> and write a one-page strategy for next week's content push."*

Aria pulls the available audience and platform context, then turns it
into a practical strategy brief instead of posting anything on your
behalf.

### Drive assets -> release brief

> *"Find the Drive folder for the Sleeper cover-art options and add the
> final links to the project brief."*

Aria searches connected Drive assets, identifies the relevant files, and
adds links where the campaign team can use them.

### Strategy -> Slack report

> *"Send the Sleeper launch summary to Slack with the next three actions
> for marketing."*

Aria formats the release status, strategy notes, and next actions into a
Slack-ready update for the right channel.

## Pricing

Plans, AI credits, and limits live on the [pricing page](https://patchline.ai/pricing) — we keep them there so they're always current.

## Related pages

* [Aria overview](/aria/overview) - the assistant doing the connecting
* [Use cases](/aria/prompts) - example prompts that span connectors
* [Audience](/artists/audience) - audience data that can shape connector workflows
* [Launchpad](/launchpad/overview) - public surfaces you can share with your team

<AICallout page="/integrations/overview" />
