# SignerX — Pipedream Connect

> One easy-to-use platform that turns your boring documents into a jaw-dropping Signer perience™ (SX)™.

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

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

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

const { tools } = await mcp.listTools()

// e.g. run List Package ID Options:
const result = await mcp.callTool({
  name: "signerx-list-package-id-options",
  arguments: {
    page: 10,
  },
})
```

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

## API proxy

For a SignerX 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.signerx.com/oauth/check

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuc2lnbmVyeC5jb20vb2F1dGgvY2hlY2s?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: "signerx-list-package-id-options",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    signerx: { authProvisionId: "apn_xxxxxxx" },
    page: 10,
  },
})
```

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

## Actions (3)

### `signerx-list-package-id-options` — List Package ID Options (Read-only)

Retrieves available options for the Package ID field.

Full schema: https://pipedream.com/apps/signerx/actions/list-package-id-options.md

### `signerx-send-template-signatures` — Send Template Signatures (Write)

Add a recipient to a template and invite to sign. See the documentation

Full schema: https://pipedream.com/apps/signerx/actions/send-template-signatures.md

### `signerx-upload-package` — Upload Package (Write)

Quickly create a draft for a new package/document by uploading a file or providing a file_url to a PDF document. See the documentation

Full schema: https://pipedream.com/apps/signerx/actions/upload-package.md

## Triggers (3)

### `signerx-new-package-created` — New Package Created (Polling)

Emit new event when a package is newly created.

Full schema: https://pipedream.com/apps/signerx/triggers/new-package-created.md

### `signerx-new-package-published` — New Package Published (Polling)

Emit new event when a package is published.

Full schema: https://pipedream.com/apps/signerx/triggers/new-package-published.md

### `signerx-new-package-signed` — New Package Signed (Polling)

Emit new event when a package has been signed.

Full schema: https://pipedream.com/apps/signerx/triggers/new-package-signed.md

---

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