# Woodpecker.co — Pipedream Connect

> Woodpecker is an intuitive cold email tool for lead gen, sales & recruitment professionals. The tool allows you to automatically connect with your prospective clients or business partners.

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Or Update Prospect:
const result = await mcp.callTool({
  name: "woodpecker_co-create-update-prospect",
  arguments: {
    id: 10,
    firstName: "First Name",
  },
})
```

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

## API proxy

For a Woodpecker.co 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.woodpecker.co/rest/v1/campaign_list

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkud29vZHBlY2tlci5jby9yZXN0L3YxL2NhbXBhaWduX2xpc3Q?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: "woodpecker_co-create-update-prospect",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    woodpecker_co: { authProvisionId: "apn_xxxxxxx" },
    id: 10,
    firstName: "First Name",
  },
})
```

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

## Actions (5)

### `woodpecker_co-create-update-prospect` — Create Or Update Prospect (Write)

This action creates/updates a prospect. See the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/actions/create-update-prospect.md

### `woodpecker_co-create-update-prospect-in-campaign` — Create Or Update Prospect In Campaign (Write)

This action creates/updates a prospect in a campaign. See the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/actions/create-update-prospect-in-campaign.md

### `woodpecker_co-find-prospect-email` — Find Prospect's email (Read-only)

This action searches a specific prospect. See the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/actions/find-prospect-email.md

### `woodpecker_co-list-campaign-id-options` — List Campaign ID Options (Read-only)

Retrieves available options for the Campaign ID field.

Full schema: https://pipedream.com/apps/woodpecker-co/actions/list-campaign-id-options.md

### `woodpecker_co-stop-follow-ups` — Stop Follow-Ups (Write)

This action updates a prospect to stop receiving follow-ups. See the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/actions/stop-follow-ups.md

## Triggers (12)

### `woodpecker_co-email-opened` — New Email Opened (Instant) (Instant)

Emit new event when an email is opened see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/email-opened.md

### `woodpecker_co-email-sent` — New Email Sent (Instant) (Instant)

Emit new event when an email is sent see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/email-sent.md

### `woodpecker_co-followup-after-autoreply` — New Follow-up After Autoreply (Instant) (Instant)

Emit new event when you get an autoreply and you set a date to resume follow-ups see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/followup-after-autoreply.md

### `woodpecker_co-link-clicked` — New Link Clicked (Instant) (Instant)

Emit new event when a prospect clicks on a link in your email see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/link-clicked.md

### `woodpecker_co-prospect-autoreplied` — New Prospect Autoreplied (Instant) (Instant)

Emit new event when an autoreply is detected or prospect's status is manually changed to 'Autoreplied' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-autoreplied.md

### `woodpecker_co-prospect-blacklisted` — New Prospect Blacklisted (Instant) (Instant)

Emit new event when a prospect unsubscribes or their status is changed manually to 'Blacklisted' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-blacklisted.md

### `woodpecker_co-prospect-bounced` — New Prospect Bounced (Instant) (Instant)

Emit new event when a bounce is detected or prospect's status is manually changed to 'Bounced' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-bounced.md

### `woodpecker_co-prospect-interested` — New Prospect Interested (Instant) (Instant)

Emit new event when prospect's interest level changes to 'Interested' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-interested.md

### `woodpecker_co-prospect-invalid` — New Prospect Invalid (Instant) (Instant)

Emit new event when prospect's email address is marked as 'Invalid' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-invalid.md

### `woodpecker_co-prospect-maybe-later` — New Prospect Maybe Later (Instant) (Instant)

Emit new event when prospect's interest level changes to 'Maybe later' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-maybe-later.md

### `woodpecker_co-prospect-not-interested` — New Prospect Not Interested (Instant) (Instant)

Emit new event when prospect's interest level changes to 'Not Interested' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-not-interested.md

### `woodpecker_co-prospect-replied` — New Prospect Replied (Instant) (Instant)

Emit new event when a reply is detected or prospect's status is manually changed to 'Responded' see the docs here

Full schema: https://pipedream.com/apps/woodpecker-co/triggers/prospect-replied.md

---

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