Skip to main content
Glama

Ableton Copilot MCP

by xiaolaa2
import { Entity, PrimaryGeneratedColumn, Column, ManyToOne, JoinColumn } from 'typeorm' import { OperationHistory } from './OperationHistory.js' import { Note, NoteExtended } from 'ableton-js/util/note.js' export enum SnapshotType { NOTE = 'NOTE', } export interface NoteSnapshotData { clip_id: string notes: Note[] | NoteExtended[] } @Entity('snapshots') export class Snapshot { @PrimaryGeneratedColumn() id!: number @Column() history_id!: number @ManyToOne(() => OperationHistory) @JoinColumn({ name: 'history_id' }) operationHistory?: OperationHistory @Column('text', { nullable: true }) snapshot_data!: string | null @Column({ type: 'varchar', length: 20, enum: SnapshotType }) snapshot_type!: SnapshotType @Column({ type: 'datetime', default: () => 'datetime(CURRENT_TIMESTAMP, \'localtime\')' }) createdAt!: Date }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/xiaolaa2/ableton-copilot-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server