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•512 B
"""
Style system - constraint bundles that narrow the solution space.
Styles don't force specific choices, they narrow what's appropriate.
They're like design tokens for genre/mood constraints.
"""
from chuk_mcp_music.styles.loader import StyleLoader
from chuk_mcp_music.styles.resolver import (
PatternSuggestion,
StyleResolver,
StyleViolation,
ViolationSeverity,
)
__all__ = [
"PatternSuggestion",
"StyleLoader",
"StyleResolver",
"StyleViolation",
"ViolationSeverity",
]