# Illumidesk — Pipedream Connect

> IllumiDesk's interactive learning platform helps instructors save time, maximize learner engagement, and improve course quality with A.I.

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Course:
const result = await mcp.callTool({
  name: "illumidesk-create-course",
  arguments: {
    campusSlug: "Campus Slug",
    title: "Course Title",
  },
})
```

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

## API proxy

For a Illumidesk 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.illumidesk.com/api/v1/campuses/

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuaWxsdW1pZGVzay5jb20vYXBpL3YxL2NhbXB1c2VzLw?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: "illumidesk-create-course",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    illumidesk: { authProvisionId: "apn_xxxxxxx" },
    campusSlug: "Campus Slug",
    title: "Course Title",
  },
})
```

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

## Actions (5)

### `illumidesk-create-course` — Create Course (Write)

Create a new course. See the documentation

Full schema: https://pipedream.com/apps/illumidesk/actions/create-course.md

### `illumidesk-create-course-lesson` — Create Course Lesson (Write)

Create a new lesson in a course. See the documentation

Full schema: https://pipedream.com/apps/illumidesk/actions/create-course-lesson.md

### `illumidesk-invite-course-member` — Invite Course Member (Write)

Invites a user to a selected course. See the documentation

Full schema: https://pipedream.com/apps/illumidesk/actions/invite-course-member.md

### `illumidesk-list-campus-slug-options` — List Campus Slug Options (Read-only)

Retrieves available options for the Campus Slug field.

Full schema: https://pipedream.com/apps/illumidesk/actions/list-campus-slug-options.md

### `illumidesk-list-courses` — List Courses (Read-only)

List all the courses associated with a given campus. See the documentation

Full schema: https://pipedream.com/apps/illumidesk/actions/list-courses.md

## Triggers (4)

### `illumidesk-new-course` — New Course (Polling)

Emit new event when a new course is created

Full schema: https://pipedream.com/apps/illumidesk/triggers/new-course.md

### `illumidesk-new-course-activity` — New Course Activity (Polling)

Emit new event when a new course activity is created

Full schema: https://pipedream.com/apps/illumidesk/triggers/new-course-activity.md

### `illumidesk-new-course-lesson` — New Course Lesson (Polling)

Emit new event when a new lesson for a specific course is created

Full schema: https://pipedream.com/apps/illumidesk/triggers/new-course-lesson.md

### `illumidesk-new-course-member` — New Course Member (Polling)

Emit new event when a new member is added to a course.

Full schema: https://pipedream.com/apps/illumidesk/triggers/new-course-member.md

---

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