Heights Platform MCP for AI Agents

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.

Heights Platform logoHeights Platform
Api Key

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.

16 Tools

Try Heights Platform now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Heights Platform
Try asking
TOOLS

Supported Tools

Every Heights Platform action and event your agent gets out of the box.

Enroll Student

Create a student or update an existing student and mark them enrolled without granting course or bundle access.

Get Learning Product

Get detailed metadata for one course, bundle, or digital product by ID.

Get Order

Get one Heights order by its public unique order ID.

Get Student Course Progress

Get a student's overall and course-specific completion percentages for one course.

Get Student Details

Get a student by email, including account attributes, activity counts, paid orders, and enrolled courses.

Grant Student Access

Grant one course or bundle to a student by creating a zero-dollar paid order.

Grant Student Role

Grant one Heights role to a student, changing the student's authorization.

List Course Roles

List the Heights roles that can be granted to students.

List Learning Products

List published courses, bundles, or digital products in the connected Heights account.

List Orders

List Heights orders with optional status, student email, and creation-time filters, returning one page and an opaque continuation cursor.

List Students

List all Heights students one page at a time, or list the unpaginated students whose total completion is at least 100 percent.

List Student Submissions

List assignment answers or project posts submitted by students.

Reset Student Progress

Permanently erase a student's saved completion and progress records.

Revoke Student Access

Permanently remove one course or bundle from a student's existing orders.

Revoke Student Role

Revoke one Heights role from a student, changing the student's authorization.

Unenroll Student

End a student's paid membership by setting their Heights paying-student state to false.

SETUP GUIDE

Connect Heights Platform MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

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}`);
Import and initialize the Composio client, then create a Tool Router session for Heights Platform
3

Connect to AI Agent

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}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Heights Platform API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

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');
Import and initialize Composio client, then create a Tool Router session
3

Execute Heights Platform Tools via Tool Router with Your Agent

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);
Get tools from Tool Router session and execute Heights Platform actions with your Agent

Why Use Composio?

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

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

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

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
FAQ

Frequently asked questions

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.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

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

Start with Heights Platform.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Heights Platform tool your agent needs.Free to start.

Start building