# ProWorkflow — Pipedream Connect

> ProWorkflow is an online project management software that enables you to keep accurate time-keeping records, organize, plan, and delegate jobs and tasks whilst using the timeline to have an overview of company activity.

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Client to Project:
const result = await mcp.callTool({
  name: "proworkflow-add-client-to-project",
  arguments: {
    projectId: "Project ID",
    clientId: "Client ID",
  },
})
```

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

## API proxy

For a ProWorkflow 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.proworkflow.net/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkucHJvd29ya2Zsb3cubmV0L21l?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: "proworkflow-add-client-to-project",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    proworkflow: { authProvisionId: "apn_xxxxxxx" },
    projectId: "Project ID",
    clientId: "Client ID",
  },
})
```

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

## Actions (11)

### `proworkflow-add-client-to-project` — Add Client to Project (Write)

Adds a client to a project. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/actions/add-client-to-project.md

### `proworkflow-add-contact` — Add Contact (Write)

Adds a contact. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/actions/add-contact.md

### `proworkflow-add-project` — Add Project (Write)

Adds a project. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/actions/add-project.md

### `proworkflow-add-project-task` — Add Project Task (Write)

Adds a project task. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/actions/add-project-task.md

### `proworkflow-delete-project` — Delete Project (Write)

Deletes a project. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/actions/delete-project.md

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

Retrieves available options for the Category ID field.

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

### `proworkflow-list-client-id-options` — List Client ID Options (Read-only)

Retrieves available options for the Client ID field.

Full schema: https://pipedream.com/apps/proworkflow/actions/list-client-id-options.md

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

Retrieves available options for the Company ID field.

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

### `proworkflow-list-project-id-options` — List Project ID Options (Read-only)

Retrieves available options for the Project ID field.

Full schema: https://pipedream.com/apps/proworkflow/actions/list-project-id-options.md

### `proworkflow-list-task-id-options` — List Task ID Options (Read-only)

Retrieves available options for the Task ID field.

Full schema: https://pipedream.com/apps/proworkflow/actions/list-task-id-options.md

### `proworkflow-update-project-task` — Update Project Task (Write)

Updates a project task. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/actions/update-project-task.md

## Triggers (5)

### `proworkflow-contact-updated` — Contact Updated (Instant)

Emit new event when a contact is updated. See the docs.

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

### `proworkflow-new-company-created` — New Company Created (Instant)

Emit new event when a new comapny is created. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/triggers/new-company-created.md

### `proworkflow-new-contact-created` — New Contact Created (Instant)

Emit new event when a new contact is created. See the docs.

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

### `proworkflow-new-project-created` — New Project Created (Instant)

Emit new event when a new project is created. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/triggers/new-project-created.md

### `proworkflow-project-updated` — Project Updated (Instant)

Emit new event when a project is updated. See the docs.

Full schema: https://pipedream.com/apps/proworkflow/triggers/project-updated.md

---

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