# Xperiencify — Pipedream Connect

> Xperiencify is the world's first fully gamified online course platform that creates a hyper-engaging "experience" for your students.

- API slug: `xperiencify` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Learning & Education
- Website: https://xperiencify.com/
- This page (HTML): https://pipedream.com/apps/xperiencify
- Tools: 5 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: xperiencify`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Student to Course:
const result = await mcp.callTool({
  name: "xperiencify-add-student-to-course",
  arguments: {
    courseId: 10,
    student: "Student",
  },
})
```

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

## API proxy

For a Xperiencify 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: "xperiencify-add-student-to-course",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    xperiencify: { authProvisionId: "apn_xxxxxxx" },
    courseId: 10,
    student: "Student",
  },
})
```

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

## Actions (5)

### `xperiencify-add-student-to-course` — Add Student to Course (Write)

Adds a student to a course. See docs

Full schema: https://pipedream.com/apps/xperiencify/actions/add-student-to-course.md

### `xperiencify-add-tag-to-student` — Add Tag To Student (Write)

Add a tag to a student. See docs

Full schema: https://pipedream.com/apps/xperiencify/actions/add-tag-to-student.md

### `xperiencify-remove-student-from-all-courses` — Remove Student from all Courses (Write)

Remove a student from all courses. See docs

Full schema: https://pipedream.com/apps/xperiencify/actions/remove-student-from-all-courses.md

### `xperiencify-remove-student-from-course` — Remove Student from Course (Write)

Remove a student from a course. See docs

Full schema: https://pipedream.com/apps/xperiencify/actions/remove-student-from-course.md

### `xperiencify-remove-tag-from-student` — Remove Tag From Student (Write)

Remove a tag from a student. See docs

Full schema: https://pipedream.com/apps/xperiencify/actions/remove-tag-from-student.md

## Triggers (1)

### `xperiencify-student-added-to-course` — Student Added to Course (Polling)

Emit new event when a student enrolls into a course.

Full schema: https://pipedream.com/apps/xperiencify/triggers/student-added-to-course.md

---

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