# Heights Platform

```json
{
  "name": "Heights Platform",
  "slug": "heights_platform",
  "url": "https://composio.dev/toolkits/heights_platform",
  "markdown_url": "https://composio.dev/toolkits/heights_platform.md",
  "logo_url": "https://logos.composio.dev/api/heights_platform",
  "categories": [
    "education & lms"
  ],
  "is_composio_managed": false,
  "updated_at": "2026-08-20T15:32:14.918Z"
}
```

![Heights Platform logo](https://logos.composio.dev/api/heights_platform)

## Description

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Heights Platform MCP or direct API to manage students, review orders, track course access, and summarize product activity through natural language.

## Summary

Heights Platform is an online course, digital product, and community platform for creators.
It helps you sell learning products, manage students, track orders, and control access in one place.

## Categories

- education & lms

## Toolkit Details

- Tools: 16

## Images

- Logo: https://logos.composio.dev/api/heights_platform

## Authentication

- **Api Key**
  - Type: `api_key`
  - Description: Api Key authentication for Heights Platform.
  - Setup:
    - Configure Api Key credentials for Heights Platform.
    - Use the credentials when creating an auth config in Composio.

## Suggested Prompts

- List new Heights Platform student enrollments
- Summarize course completion by cohort
- Find failed orders needing access review

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `HEIGHTS_PLATFORM_ENROLL_STUDENT` | Enroll Student | Create a student or update an existing student and mark them enrolled without granting course or bundle access. Use Grant Student Access when the student should also receive a learning product. |
| `HEIGHTS_PLATFORM_GET_LEARNING_PRODUCT` | Get Learning Product | Get detailed metadata for one course, bundle, or digital product by ID. |
| `HEIGHTS_PLATFORM_GET_ORDER` | Get Order | Get one Heights order by its public unique order ID. |
| `HEIGHTS_PLATFORM_GET_STUDENT_COURSE_PROGRESS` | Get Student Course Progress | Get a student's overall and course-specific completion percentages for one course. |
| `HEIGHTS_PLATFORM_GET_STUDENT_DETAILS` | Get Student Details | Get a student by email, including account attributes, activity counts, paid orders, and enrolled courses. |
| `HEIGHTS_PLATFORM_GRANT_STUDENT_ACCESS` | Grant Student Access | Grant one course or bundle to a student by creating a zero-dollar paid order. Heights also creates or updates the student and marks them enrolled. This is non-idempotent because retrying can create another access order; do not automatically retry an ambiguous result. |
| `HEIGHTS_PLATFORM_GRANT_STUDENT_ROLE` | Grant Student Role | Grant one Heights role to a student, changing the student's authorization. Use a role ID returned by List Course Roles. |
| `HEIGHTS_PLATFORM_LIST_COURSE_ROLES` | List Course Roles | List the Heights roles that can be granted to students. |
| `HEIGHTS_PLATFORM_LIST_LEARNING_PRODUCTS` | List Learning Products | List published courses, bundles, or digital products in the connected Heights account. |
| `HEIGHTS_PLATFORM_LIST_ORDERS` | List Orders | List Heights orders with optional status, student email, and creation-time filters, returning one page and an opaque continuation cursor. |
| `HEIGHTS_PLATFORM_LIST_STUDENTS` | List Students | List all Heights students one page at a time, or list the unpaginated students whose total completion is at least 100 percent. |
| `HEIGHTS_PLATFORM_LIST_STUDENT_SUBMISSIONS` | List Student Submissions | List assignment answers or project posts submitted by students. |
| `HEIGHTS_PLATFORM_RESET_STUDENT_PROGRESS` | Reset Student Progress | Permanently erase a student's saved completion and progress records. For a course, this resets the selected course only. For a bundle, this resets every course in that bundle. This destructive change cannot be undone; confirm the student, resource type, and resource ID before calling. Do not automatically retry an ambiguous result. |
| `HEIGHTS_PLATFORM_REVOKE_STUDENT_ACCESS` | Revoke Student Access | Permanently remove one course or bundle from a student's existing orders. Course revocation removes that course from every applicable order. Bundle revocation cascades: it removes the bundle and the bundle's courses and digital products from the student's orders. This can immediately remove content access and is not automatically reversible; verify the student, resource type, and resource ID before calling. |
| `HEIGHTS_PLATFORM_REVOKE_STUDENT_ROLE` | Revoke Student Role | Revoke one Heights role from a student, changing the student's authorization. Use a role ID returned by List Course Roles. |
| `HEIGHTS_PLATFORM_UNENROLL_STUDENT` | Unenroll Student | End a student's paid membership by setting their Heights paying-student state to false. This changes the student's membership state; it does not delete the student account or promise to remove separately granted course or bundle access. |

## Supported Triggers

None listed.

## Installation and MCP Setup

### Path 1: SDK Installation

#### Path 1, Step 1: Install Composio

Install the Composio SDK
```python
pip install composio_openai
```

```typescript
npm install @composio/openai
```

#### Path 1, Step 2: Initialize Composio and Create Tool Router Session

Import and initialize Composio client, then create a Tool Router session
```python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
```

```typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
```

#### Path 1, Step 3: Execute Heights Platform Tools via Tool Router with Your Agent

Get tools from Tool Router session and execute Heights Platform actions with your Agent
```python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'List all Heights Platform students enrolled this week and summarize their course access status'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
```

```typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all Heights Platform students enrolled this week and summarize their course access status'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
```

### Path 2: MCP Server Setup

#### Path 2, Step 1: Install Composio

Install the Composio SDK for Python or TypeScript
```python
pip install composio claude-agent-sdk
```

```typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
```

#### Path 2, Step 2: Initialize Client and Create Tool Router Session

Import and initialize the Composio client, then create a Tool Router session for Heights Platform
```python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
```

```typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
```

#### Path 2, Step 3: Connect to AI Agent

Use the MCP server with your AI agent (Anthropic Claude or Mastra)
```python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Heights Platform tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Find recent failed Heights Platform orders and identify students who may need access review')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
```

```typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Find recent failed Heights Platform orders and identify students who may need access review'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
```

## Why Use Composio?

### 1. AI Native Heights Platform Integration

- Supports both Heights Platform MCP and direct API based integrations
- Structured, LLM-friendly schemas for reliable student, course, order, and access workflows
- Rich coverage for reading, writing, and querying your Heights Platform data

### 2. Managed Auth

- Securely store Heights Platform API keys instead of hard-coding them in agent code
- Create custom API key auth configs with auth_configs.create() and link users with connected_accounts.link()
- Central place to manage, scope, and revoke Heights Platform access across users and environments

### 3. Agent Optimized Design

- Tools are tuned for AI agents, so your assistant can understand Heights Platform actions without bespoke integration code
- Use MCP sessions with mcp.create() or Tool Router sessions to give agents safe access to Heights Platform workflows
- Comprehensive execution logs show what ran, when, and on whose behalf

### 4. Enterprise Grade Security

- Fine-grained RBAC so you control which agents and users can access Heights Platform
- Scoped, least privilege access to Heights Platform resources like students, orders, products, and course access
- Full audit trail of agent actions to support review and compliance

## Use Heights Platform with any AI Agent Framework

Choose a framework you want to connect Heights Platform with:

None listed.

## Related Toolkits

- [Canvas](https://composio.dev/toolkits/canvas) - Canvas is a learning management system for online courses, assignments, grading, and collaboration. It's trusted by educators and students to streamline virtual classrooms and enhance digital learning.
- [Accredible certificates](https://composio.dev/toolkits/accredible_certificates) - Accredible Certificates is a platform for creating and managing digital certificates, badges, and blockchain credentials. It streamlines issuing, tracking, and verifying professional achievements for organizations of any size.
- [Api bible](https://composio.dev/toolkits/api_bible) - API.Bible is a developer platform for Scripture content and passage search. Easily integrate Bible verses and translations into your apps or chatbots.
- [Blackboard](https://composio.dev/toolkits/blackboard) - Blackboard is a digital learning platform for higher education and schools, offering tools to manage courses, track engagement, and deliver interactive content. It helps institutions improve student outcomes through actionable analytics and in-app guidance.
- [Certifier](https://composio.dev/toolkits/certifier) - Certifier is a platform for creating, managing, and issuing digital certificates and credentials. Organizations use it to automate and secure the entire credentialing process.
- [Classmarker](https://composio.dev/toolkits/classmarker) - ClassMarker is a professional online quiz maker for business and education. It provides instant grading, flexible test design, and in-depth reporting.
- [Coassemble](https://composio.dev/toolkits/coassemble) - Coassemble is a flexible platform for building, managing, and delivering online training courses. It helps teams streamline onboarding, upskilling, and ongoing learning for employees or partners.
- [Consensus](https://composio.dev/toolkits/consensus) - Consensus is an evidence-based search engine for scientific research papers. It helps you find clear, research-backed answers without digging through papers manually.
- [D2lbrightspace](https://composio.dev/toolkits/d2lbrightspace) - D2L Brightspace is a learning management system for delivering and managing online courses and assessments. It helps educators streamline digital teaching, assignments, and communication with students.
- [Dictionary api](https://composio.dev/toolkits/dictionary_api) - Dictionary api is the Merriam-Webster API providing rich dictionary and thesaurus data for developers. Instantly access definitions, synonyms, etymologies, and audio pronunciations in your apps.
- [Google Classroom](https://composio.dev/toolkits/google_classroom) - Google Classroom is a free web service for educators and students to manage assignments and communication. It streamlines classroom collaboration and grading, making teaching simpler and more connected.
- [Lessonspace](https://composio.dev/toolkits/lessonspace) - Lessonspace is an online collaborative classroom platform offering video, whiteboards, and real-time interaction for educators and students. It streamlines remote teaching with integrated tools for engagement and communication.
- [Linguapop](https://composio.dev/toolkits/linguapop) - Linguapop is a web platform for administering language placement tests in English, German, Spanish, Italian, and French. It helps schools and organizations efficiently manage multilingual assessments and analyze results.
- [Memberspot](https://composio.dev/toolkits/memberspot) - Memberspot is an online course and video-hosting platform for business learning. It helps teams manage, deliver, and track knowledge efficiently.
- [Membervault](https://composio.dev/toolkits/membervault) - Membervault is a platform for hosting courses, memberships, and digital products in one place. It helps you build stronger relationships with your audience by centralizing digital offers and customer engagement.
- [Gmail](https://composio.dev/toolkits/gmail) - Gmail is Google's email service with powerful spam protection, search, and G Suite integration. It keeps your inbox organized and makes communication fast and reliable.
- [Google Calendar](https://composio.dev/toolkits/googlecalendar) - Google Calendar is a time management service for scheduling meetings, events, and reminders. It streamlines personal and team organization with integrated notifications and sharing options.
- [Google Drive](https://composio.dev/toolkits/googledrive) - Google Drive is a cloud storage platform for uploading, sharing, and collaborating on files. It's perfect for keeping your documents accessible and organized across devices.
- [Outlook](https://composio.dev/toolkits/outlook) - Outlook is Microsoft's email and calendaring platform for unified communications and scheduling. It helps users stay organized with powerful email, contacts, and calendar management.
- [Twitter](https://composio.dev/toolkits/twitter) - Twitter is a social media platform for sharing real-time updates, conversations, and news. Stay connected, informed, and engaged with communities worldwide.

## Frequently Asked Questions

### Do I need my own developer credentials to use Heights Platform with Composio?

Yes, Heights Platform requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

### Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. [Learn more](https://docs.composio.dev/tool-router/overview).

### Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. [Learn more](https://trust.composio.dev).

### What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
