Skip to main content
Glama

Decent-Sampler Drums MCP Server

drum-kit-types.ts741 B
import { MicBusConfig, DrumMicConfig } from './mic-routing.js'; import { DrumPitchConfig, DrumEnvelopeConfig } from './drum-controls.js'; // Shared round robin mode types export type RoundRobinMode = "round_robin" | "random" | "true_random" | "always"; // Velocity Layer Configuration export interface VelocityLayer { low: number; high: number; name: string; } // Muting Configuration export interface MutingConfig { tags: string[]; silencedByTags: string[]; } // Round Robin Configuration export interface RoundRobinConfig { mode: RoundRobinMode; length?: number; } // Utility type for creating type-safe configurations export type DeepPartial<T> = { [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P]; };

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/dandeliongold/mcp-decent-sampler-drums'

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