# Vision6 — Pipedream Connect

> Australia's Most Reliable Email & SMS Marketing Software. Sign Up for a Free Trial Today!

- API slug: `vision6` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Marketing
- Website: https://www.vision6.com
- This page (HTML): https://pipedream.com/apps/vision6
- Tools: 8 actions · 6 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: vision6`

```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": "vision6",
      },
    },
  },
)

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: "vision6-create-contact",
  arguments: {
    list: 10,
    email: "Email",
  },
})
```

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

## API proxy

For a Vision6 endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.example.com/v1/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXhhbXBsZS5jb20vdjEvbWU?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.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: "vision6-create-contact",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    vision6: { authProvisionId: "apn_xxxxxxx" },
    list: 10,
    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)

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

Create a new contact. See the docs here

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

### `vision6-deactivate-contact` — Deactivate Contact (Write)

Deactivate an existing contact. See the docs here

Full schema: https://pipedream.com/apps/vision6/actions/deactivate-contact.md

### `vision6-delete-contact` — Delete Contact (Write)

Delete a contact. See the docs here

Full schema: https://pipedream.com/apps/vision6/actions/delete-contact.md

### `vision6-list-list-options` — List List Options (Read-only)

Retrieves available options for the List field.

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

### `vision6-reactivate-contact` — Reactivate Contact (Write)

Reactivate an existing contact. See the docs here

Full schema: https://pipedream.com/apps/vision6/actions/reactivate-contact.md

### `vision6-subscribe-contact` — Subscribe Contact (Write)

Subscribe an existing contact. See the docs here

Full schema: https://pipedream.com/apps/vision6/actions/subscribe-contact.md

### `vision6-unsubscribe-contact` — Unsubscribe Contact (Write)

Unsubscribe an existing contact. See the docs here

Full schema: https://pipedream.com/apps/vision6/actions/unsubscribe-contact.md

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

Update an existing contact. See the docs here

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

## Triggers (6)

### `vision6-contact-activated` — Contact Activated (Polling)

Emit new event when a contact is activated

Full schema: https://pipedream.com/apps/vision6/triggers/contact-activated.md

### `vision6-contact-deactivated` — Contact Deactivated (Polling)

Emit new event when a contact is deactivated

Full schema: https://pipedream.com/apps/vision6/triggers/contact-deactivated.md

### `vision6-contact-subscribed` — Contact Subscribed (Polling)

Emit new event when a contact is subscribed

Full schema: https://pipedream.com/apps/vision6/triggers/contact-subscribed.md

### `vision6-contact-unsubscribed` — Contact Unsubscribed (Polling)

Emit new event when a contact is unsubscribed

Full schema: https://pipedream.com/apps/vision6/triggers/contact-unsubscribed.md

### `vision6-contact-updated` — Contact Updated (Polling)

Emit new event when a contact is updated

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

### `vision6-new-contact` — New Contact (Polling)

Emit new event when a new contact is added

Full schema: https://pipedream.com/apps/vision6/triggers/new-contact.md

---

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