# Security Reporter — Pipedream Connect

> Reporting made easy, Pentesting made powerful

- API slug: `security_reporter` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Infrastructure & Cloud
- Website: https://securityreporter.app/
- This page (HTML): https://pipedream.com/apps/security-reporter
- Tools: 9 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: security_reporter`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Security Assessment:
const result = await mcp.callTool({
  name: "security_reporter-create-assessment",
  arguments: {
    clientId: "Client ID",
    assessmentTemplateId: "Assessment Template ID",
  },
})
```

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

## API proxy

For a Security Reporter 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: "security_reporter-create-assessment",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    security_reporter: { authProvisionId: "apn_xxxxxxx" },
    clientId: "Client ID",
    assessmentTemplateId: "Assessment Template ID",
  },
})
```

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

## Actions (9)

### `security_reporter-create-assessment` — Create Security Assessment (Write)

Creates a new security assessment. See the documentation

Full schema: https://pipedream.com/apps/security-reporter/actions/create-assessment.md

### `security_reporter-create-finding` — Create Security Finding (Write)

Creates a new security finding. See the documentation

Full schema: https://pipedream.com/apps/security-reporter/actions/create-finding.md

### `security_reporter-list-assessment-id-options` — List Assessment ID Options (Read-only)

Retrieves available options for the Assessment ID field.

Full schema: https://pipedream.com/apps/security-reporter/actions/list-assessment-id-options.md

### `security_reporter-list-assessment-template-id-options` — List Assessment Template ID Options (Read-only)

Retrieves available options for the Assessment Template ID field.

Full schema: https://pipedream.com/apps/security-reporter/actions/list-assessment-template-id-options.md

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

Retrieves available options for the Client ID field.

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

### `security_reporter-list-finding-id-options` — List Finding ID Options (Read-only)

Retrieves available options for the Finding ID field.

Full schema: https://pipedream.com/apps/security-reporter/actions/list-finding-id-options.md

### `security_reporter-list-language-id-options` — List Language ID Options (Read-only)

Retrieves available options for the Language ID field.

Full schema: https://pipedream.com/apps/security-reporter/actions/list-language-id-options.md

### `security_reporter-list-theme-id-options` — List Theme ID Options (Read-only)

Retrieves available options for the Theme ID field.

Full schema: https://pipedream.com/apps/security-reporter/actions/list-theme-id-options.md

### `security_reporter-update-finding` — Update Security Finding (Write)

Updates an existing security finding. See the documentation

Full schema: https://pipedream.com/apps/security-reporter/actions/update-finding.md

## Triggers (3)

### `security_reporter-new-assessment-instant` — New Assessment Created (Instant) (Instant)

Emit new event when an assessment is created.

Full schema: https://pipedream.com/apps/security-reporter/triggers/new-assessment-instant.md

### `security_reporter-new-finding-instant` — New Finding Created (Instant) (Instant)

Emit new event when a finding is created.

Full schema: https://pipedream.com/apps/security-reporter/triggers/new-finding-instant.md

### `security_reporter-new-finding-updated-instant` — New Finding Updated (Instant) (Instant)

Emit new event when a finding is updated.

Full schema: https://pipedream.com/apps/security-reporter/triggers/new-finding-updated-instant.md

---

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