# Canny — Pipedream Connect

> Canny helps you collect and organize feature requests to better understand customer needs and prioritize your roadmap.

- API slug: `canny` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Help Desk & Support
- Website: https://canny.io
- This page (HTML): https://pipedream.com/apps/canny
- Tools: 10 actions · 3 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: canny`

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

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

const { tools } = await mcp.listTools()

// e.g. run Change Post Status:
const result = await mcp.callTool({
  name: "canny-change-post-status",
  arguments: {
    boardId: "Board ID",
    postId: "Post ID",
  },
})
```

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

## API proxy

For a Canny 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://canny.io/api/v1/boards/list

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9jYW5ueS5pby9hcGkvdjEvYm9hcmRzL2xpc3Q?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: "canny-change-post-status",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    canny: { authProvisionId: "apn_xxxxxxx" },
    boardId: "Board ID",
    postId: "Post ID",
  },
})
```

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

## Actions (10)

### `canny-change-post-status` — Change Post Status (Write)

Change the status of a post. See the documentation

Full schema: https://pipedream.com/apps/canny/actions/change-post-status.md

### `canny-create-comment` — Create Comment (Write)

Create a comment. See the documentation

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

### `canny-create-post` — Create Post (Write)

Create a post. See the documentation

Full schema: https://pipedream.com/apps/canny/actions/create-post.md

### `canny-get-post` — Get Post (Read-only)

Get a post. See the documentation

Full schema: https://pipedream.com/apps/canny/actions/get-post.md

### `canny-list-board-id-options` — List Board ID Options (Read-only)

Retrieves available options for the Board ID field.

Full schema: https://pipedream.com/apps/canny/actions/list-board-id-options.md

### `canny-list-category-id-options` — List Category ID Options (Read-only)

Retrieves available options for the Category ID field.

Full schema: https://pipedream.com/apps/canny/actions/list-category-id-options.md

### `canny-list-comment-id-options` — List Comment ID Options (Read-only)

Retrieves available options for the Comment ID field.

Full schema: https://pipedream.com/apps/canny/actions/list-comment-id-options.md

### `canny-list-company-id-options` — List Company ID Options (Read-only)

Retrieves available options for the Company ID field.

Full schema: https://pipedream.com/apps/canny/actions/list-company-id-options.md

### `canny-list-tag-id-options` — List Tag ID Options (Read-only)

Retrieves available options for the Tag ID field.

Full schema: https://pipedream.com/apps/canny/actions/list-tag-id-options.md

### `canny-list-user-id-options` — List User ID Options (Read-only)

Retrieves available options for the User ID field.

Full schema: https://pipedream.com/apps/canny/actions/list-user-id-options.md

## Triggers (3)

### `canny-new-comment-created` — New Comment Created (Polling)

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

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

### `canny-new-vote-created` — New Vote Created (Polling)

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

Full schema: https://pipedream.com/apps/canny/triggers/new-vote-created.md

### `canny-post-status-changed` — Post Status Changed (Polling)

Emit new event when the status of a post is changed. See the documentation

Full schema: https://pipedream.com/apps/canny/triggers/post-status-changed.md

---

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