# Bitdefender GravityZone — Pipedream Connect

> Cyber Security Platform

- API slug: `bitdefender_gravityzone` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Security
- Website: https://www.bitdefender.com/en-us/business/gravityzone-platform/
- This page (HTML): https://pipedream.com/apps/bitdefender-gravityzone
- Tools: 8 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: bitdefender_gravityzone`

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

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

const { tools } = await mcp.listTools()

// e.g. run Get Policy Details:
const result = await mcp.callTool({
  name: "bitdefender_gravityzone-get-policy-details",
  arguments: {
    policyId: "Policy ID",
  },
})
```

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

## API proxy

For a Bitdefender GravityZone 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: "bitdefender_gravityzone-get-policy-details",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    bitdefender_gravityzone: { authProvisionId: "apn_xxxxxxx" },
    policyId: "Policy ID",
  },
})
```

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

## Actions (8)

### `bitdefender_gravityzone-get-policy-details` — Get Policy Details (Read-only)

Retrieve details about a specific policy. See the documentation

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/actions/get-policy-details.md

### `bitdefender_gravityzone-get-scan-task-status` — Get Scan Task Status (Read-only)

Get the status of a scan task. See the documentation

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/actions/get-scan-task-status.md

### `bitdefender_gravityzone-list-endpoint-id-options` — List Endpoint ID Options (Read-only)

Retrieves available options for the Endpoint ID field.

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/actions/list-endpoint-id-options.md

### `bitdefender_gravityzone-list-group-id-options` — List Group ID Options (Read-only)

Retrieves available options for the Group ID field.

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/actions/list-group-id-options.md

### `bitdefender_gravityzone-list-policy-id-options` — List Policy ID Options (Read-only)

Retrieves available options for the Policy ID field.

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/actions/list-policy-id-options.md

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

Retrieves available options for the Task ID field.

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

### `bitdefender_gravityzone-move-endpoint-to-group` — Move Endpoint to Group (Write)

Move an endpoint to a different group. See the documentation

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/actions/move-endpoint-to-group.md

### `bitdefender_gravityzone-scan-endpoint` — Scan Endpoint (Write)

Trigger a scan on a specific endpoint. See the documentation

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/actions/scan-endpoint.md

## Triggers (3)

### `bitdefender_gravityzone-new-endpoint-added-instant` — New Endpoint Added (Instant) (Instant)

Emit new event when a new endpoint is registered in Bitdefender GravityZone.

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/triggers/new-endpoint-added-instant.md

### `bitdefender_gravityzone-new-incident-instant` — New Incident (Instant) (Instant)

Emit new event when a new Root Cause Analysis (RCA) is displayed under the Incidents section of Control Center.

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/triggers/new-incident-instant.md

### `bitdefender_gravityzone-new-threat-detected-instant` — New Threat Detected (Instant) (Instant)

Emit new event when a potentially dangerous application is detected and blocked on an endpoint

Full schema: https://pipedream.com/apps/bitdefender-gravityzone/triggers/new-threat-detected-instant.md

---

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