# INDIEFUNNELS — Pipedream Connect

> Your All-in-One Platform for an Independent Music Business in the EU

- API slug: `indiefunnels` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Marketing
- Website: https://indiefunnels.de
- This page (HTML): https://pipedream.com/apps/indiefunnels
- Tools: 8 actions · 4 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: indiefunnels`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "indiefunnels",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create Contact:
const result = await mcp.callTool({
  name: "indiefunnels-create-contact",
  arguments: {
    name: "Name",
    email: "Email",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "indiefunnels-create-contact",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    indiefunnels: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    email: "Email",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (8)

### `indiefunnels-create-contact` — Create Contact (Write)

Creates a new Contact on your IndieFunnel website. See the documentation

Full schema: https://pipedream.com/apps/indiefunnels/actions/create-contact.md

### `indiefunnels-create-member` — Create Member (Write)

Creates a new Member on your IndieFunnel website. See the documentation

Full schema: https://pipedream.com/apps/indiefunnels/actions/create-member.md

### `indiefunnels-list-contact-id-options` — List Contact ID Options (Read-only)

Retrieves available options for the Contact ID field.

Full schema: https://pipedream.com/apps/indiefunnels/actions/list-contact-id-options.md

### `indiefunnels-list-groups-options` — List Member Groups Options (Read-only)

Retrieves available options for the Member Groups field.

Full schema: https://pipedream.com/apps/indiefunnels/actions/list-groups-options.md

### `indiefunnels-list-member-id-options` — List Member ID Options (Read-only)

Retrieves available options for the Member ID field.

Full schema: https://pipedream.com/apps/indiefunnels/actions/list-member-id-options.md

### `indiefunnels-list-subscriber-lists-options` — List Subscriber Lists Options (Read-only)

Retrieves available options for the Subscriber Lists field.

Full schema: https://pipedream.com/apps/indiefunnels/actions/list-subscriber-lists-options.md

### `indiefunnels-update-contact` — Update Contact (Write)

Updates a Contact specified by ID. See the documentation

Full schema: https://pipedream.com/apps/indiefunnels/actions/update-contact.md

### `indiefunnels-update-member` — Update Member (Write)

Updates a Member specified by ID. See the documentation

Full schema: https://pipedream.com/apps/indiefunnels/actions/update-member.md

## Triggers (4)

### `indiefunnels-contact-updated-instant` — Contact Updated (Instant) (Instant)

Emit new event when a contact is updated.

Full schema: https://pipedream.com/apps/indiefunnels/triggers/contact-updated-instant.md

### `indiefunnels-new-booking-session-instant` — New Booking Session (Instant) (Instant)

Emit new event when a new session is booked from a client.

Full schema: https://pipedream.com/apps/indiefunnels/triggers/new-booking-session-instant.md

### `indiefunnels-new-form-submission-instant` — New Form Submission (Instant) (Instant)

Emit new event when a form is submitted.

Full schema: https://pipedream.com/apps/indiefunnels/triggers/new-form-submission-instant.md

### `indiefunnels-new-order-instant` — New Order (Instant) (Instant)

Emit new event when a new order is created.

Full schema: https://pipedream.com/apps/indiefunnels/triggers/new-order-instant.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
