# Basecamp — Pipedream Connect

> Project Management & Team Communication

- API slug: `basecamp` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Productivity
- Website: https://basecamp.com/
- This page (HTML): https://pipedream.com/apps/basecamp
- Tools: 7 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: basecamp`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create a Card:
const result = await mcp.callTool({
  name: "basecamp-create-card",
  arguments: {
    accountId: "Account ID",
    projectId: "Project ID",
  },
})
```

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

## API proxy

For a Basecamp 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://launchpad.37signals.com/authorization.json

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9sYXVuY2hwYWQuMzdzaWduYWxzLmNvbS9hdXRob3JpemF0aW9uLmpzb24?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: "basecamp-create-card",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    basecamp: { authProvisionId: "apn_xxxxxxx" },
    accountId: "Account ID",
    projectId: "Project ID",
  },
})
```

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

## Actions (7)

### `basecamp-create-card` — Create a Card (Write)

Creates a card in a selected column. See the documentation

Full schema: https://pipedream.com/apps/basecamp/actions/create-card.md

### `basecamp-create-comment` — Create a Comment (Write)

Creates a comment in a selected recording. See the documentation

Full schema: https://pipedream.com/apps/basecamp/actions/create-comment.md

### `basecamp-create-campfire-chatbot-message` — Create Campfire Chatbot Message (Write)

Creates a message in a Campfire for a Basecamp Chatbot. See the documentation

Full schema: https://pipedream.com/apps/basecamp/actions/create-campfire-chatbot-message.md

### `basecamp-create-campfire-message` — Create Campfire Message (Write)

Creates a message in a selected Campfire. See the documentation

Full schema: https://pipedream.com/apps/basecamp/actions/create-campfire-message.md

### `basecamp-create-message` — Create Message (Write)

Creates a message in a selected message board. See the documentation

Full schema: https://pipedream.com/apps/basecamp/actions/create-message.md

### `basecamp-create-todo-item` — Create To-do Item (Write)

Creates a to-do item in a selected to-do list. See the documentation

Full schema: https://pipedream.com/apps/basecamp/actions/create-todo-item.md

### `basecamp-list-account-id-options` — List Account ID Options (Read-only)

Retrieves available options for the Account ID field.

Full schema: https://pipedream.com/apps/basecamp/actions/list-account-id-options.md

## Triggers (6)

### `basecamp-new-comment-created` — New Comment Created (Instant) (Instant)

Emit new event when a comment is created. See the documentation

Full schema: https://pipedream.com/apps/basecamp/triggers/new-comment-created.md

### `basecamp-new-message-created` — New Message Created (Instant) (Instant)

Emit new event when a message is created. See the documentation

Full schema: https://pipedream.com/apps/basecamp/triggers/new-message-created.md

### `basecamp-new-to-do-item-created` — New To-Do Item Created (Instant) (Instant)

Emit new event when a to-do item is created. See the documentation

Full schema: https://pipedream.com/apps/basecamp/triggers/new-to-do-item-created.md

### `basecamp-new-to-do-list-created` — New To-Do List Created (Instant) (Instant)

Emit new event when a to-do list is created. See the documentation

Full schema: https://pipedream.com/apps/basecamp/triggers/new-to-do-list-created.md

### `basecamp-new-event-by-webhook-type` — New Webhook Event (Instant) (Instant)

Emit events of one or more selected types. See the documentation

Full schema: https://pipedream.com/apps/basecamp/triggers/new-event-by-webhook-type.md

### `basecamp-new-to-do-item-status` — To-Do Item Completed Or Uncompleted (Instant) (Instant)

Emit new event when a to-do item's status changes. See the documentation

Full schema: https://pipedream.com/apps/basecamp/triggers/new-to-do-item-status.md

---

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