# ChargeKeep — Pipedream Connect

> Stripe Recurring Payments Software

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Invoice:
const result = await mcp.callTool({
  name: "chargekeep-create-invoice",
  arguments: {
    contactId: 10,
    status: "Status",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.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: "chargekeep-create-invoice",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    chargekeep: { authProvisionId: "apn_xxxxxxx" },
    contactId: 10,
    status: "Status",
  },
})
```

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

## Actions (6)

### `chargekeep-create-invoice` — Create Invoice (Write)

Create a new invoice in Chargekeep. See the documentation

Full schema: https://pipedream.com/apps/chargekeep/actions/create-invoice.md

### `chargekeep-create-or-update-contact` — Create or Update Contact (Write)

Create or update a contact in Chargekeep. See the documentation

Full schema: https://pipedream.com/apps/chargekeep/actions/create-or-update-contact.md

### `chargekeep-create-product` — Create Product (Write)

Create a new product in Chargekeep. See the documentation

Full schema: https://pipedream.com/apps/chargekeep/actions/create-product.md

### `chargekeep-get-contact-info` — Get Contact Info (Read-only)

Get contact information from Chargekeep. See the documentation

Full schema: https://pipedream.com/apps/chargekeep/actions/get-contact-info.md

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

Retrieves available options for the Contact Group ID field.

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

### `chargekeep-list-currency-id-options` — List Currency ID Options (Read-only)

Retrieves available options for the Currency ID field.

Full schema: https://pipedream.com/apps/chargekeep/actions/list-currency-id-options.md

## Triggers (2)

### `chargekeep-new-contact-created` — New Contact Created (Polling)

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

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

### `chargekeep-new-product-created` — New Product Created (Polling)

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

Full schema: https://pipedream.com/apps/chargekeep/triggers/new-product-created.md

---

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