├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── mcp_applemusic.py ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- 1 | mcp_applemusic.egg-info 2 | .vscode 3 | 4 | *.pyc 5 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/mcp-applemusic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/mcp-applemusic/HEAD/README.md -------------------------------------------------------------------------------- /mcp_applemusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/mcp-applemusic/HEAD/mcp_applemusic.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/mcp-applemusic/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/mcp-applemusic/HEAD/uv.lock --------------------------------------------------------------------------------