# Minform — Pipedream Connect

> Free online AI forms and quiz maker

- API slug: `minform` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Surveys & Forms
- Website: https://minform.io/
- Managed OAuth scopes: `read:forms` · `read:submissions`
- This page (HTML): https://pipedream.com/apps/minform
- Tools: 2 actions · 1 trigger

## 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: minform`

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

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

const { tools } = await mcp.listTools()

// e.g. run Get Form Submissions:
const result = await mcp.callTool({
  name: "minform-get-form-submissions",
  arguments: {
    formId: "Form ID",
  },
})
```

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: "minform-get-form-submissions",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    minform: { authProvisionId: "apn_xxxxxxx" },
    formId: "Form ID",
  },
})
```

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

## Actions (2)

### `minform-get-form-submissions` — Get Form Submissions (Read-only)

Returns the 10 most recent submissions for a form. See the documentation

Full schema: https://pipedream.com/apps/minform/actions/get-form-submissions.md

### `minform-list-forms` — List Forms (Read-only)

List forms the authenticated user can access across their workspaces. See the documentation

Full schema: https://pipedream.com/apps/minform/actions/list-forms.md

## Triggers (1)

### `minform-new-submission-received` — New Submission Received (Instant) (Instant)

Emit new event when a new form submission is received. See the documentation

Full schema: https://pipedream.com/apps/minform/triggers/new-submission-received.md

---

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