We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gorums/music-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•662 B
#!/usr/bin/env python3
"""
Music Collection MCP Server - Prompts Package
This package contains all individual MCP prompt implementations.
Each prompt is in its own dedicated file for better maintainability.
"""
# Import all individual prompt functions
from .fetch_band_info_prompt import fetch_band_info_prompt
from .analyze_band_prompt import analyze_band_prompt
from .compare_bands_prompt import compare_bands_prompt
from .collection_insights_prompt import collection_insights_prompt
# Export all prompts for easy importing
__all__ = [
'fetch_band_info_prompt',
'analyze_band_prompt',
'compare_bands_prompt',
'collection_insights_prompt'
]