We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrishayuk/chuk-mcp-music'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•485 B
"""
Pattern system - the shadcn layer.
Patterns are copyable, ownable, modifiable templates.
They define musical building blocks with parameters and variants.
"""
from chuk_mcp_music.patterns.compiler import (
CompileContext,
HarmonyContext,
PatternCompiler,
compile_pattern,
)
from chuk_mcp_music.patterns.registry import PatternRegistry
__all__ = [
"CompileContext",
"HarmonyContext",
"PatternCompiler",
"PatternRegistry",
"compile_pattern",
]