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•603 B
#!/usr/bin/env python3
"""
Music Collection MCP Server - Resources Package
This package contains all individual MCP resource implementations.
Each resource is in its own dedicated file for better maintainability.
"""
# Import all individual resource functions
from .band_info_resource import band_info_resource
from .collection_summary_resource import collection_summary_resource
from .advanced_analytics_resource import advanced_analytics_resource
# Export all resources for easy importing
__all__ = [
'band_info_resource',
'collection_summary_resource',
'advanced_analytics_resource'
]