SunoMCP
MCP server for Suno AI music generation, lyrics, and cover workflows via Ace Data Cloud.
File Explorer
- pre-commit
- deploy.yaml
- publish.yml
- copilot-instructions.md
- dependabot.yml
- __init__.py
- client.py
- config.py
- exceptions.py
- oauth.py
- server.py
- types.py
- utils.py
- deployment.yaml
- ingress.yaml
- service.yaml
- run.sh
- gradle-wrapper.jar
- gradle-wrapper.properties
- CopyConfigActions.kt
- McpSunoSettings.kt
- McpSunoSettingsConfigurable.kt
- McpSunoStartupActivity.kt
- plugin.xml
- pluginIcon.png
- pluginIcon.svg
- pluginIcon_dark.svg
- .gitignore
- build.gradle.kts
- CHANGELOG.md
- gradle.properties
- gradlew
- gradlew.bat
- README.md
- settings.gradle.kts
- __init__.py
- __init__.py
- conftest.py
- test_audio_tools.py
- test_client.py
- test_config.py
- test_integration.py
- test_media_tools.py
- test_oauth.py
- test_style_tools.py
- test_task_tools.py
- test_utils.py
- __init__.py
- audio_tools.py
- info_tools.py
- lyrics_tools.py
- media_tools.py
- persona_tools.py
- style_tools.py
- task_tools.py
- .vscodeignore
- CHANGELOG.md
- extension.js
- icon.png
- LICENSE
- package.json
- README.md
- .env.example
- .gitignore
- .python-version
- .ruff.toml
- CHANGELOG.md
- CLAUDE.md
- CONTRIBUTING_TO_MCP_SERVERS.md
- docker-compose.yaml
- Dockerfile
- glama.json
- LICENSE
- main.py
- pyproject.toml
- README.md
- server.json
- smithery.yaml
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
claude
View Details ▼
claude
An agent-based coding tool that understands your code base and helps you code faster through natural language commands.
claude prompt
Execute with prompt:
claude update
Update `claude`:
claude mcp list
Get the list of specified MCP servers:
docker pull
View Details ▼
docker pull
This command is an alias of `docker image pull`.
tldr docker image pull
View documentation for the original command:
docker run
View Details ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
View Details ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
mypy
View Details ▼
mypy
Type check Python code.
mypy {{path/to/file.py}}
Type check a specific file:
mypy {{[-m|--module]}} {{module_name}}
Type check a specific module:
mypy {{[-p|--package]}} {{package_name}}
Type check a specific package:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
ruff check
View Details ▼
ruff check
An extremely fast Python linter. `check` is the default command - it can be omitted everywhere.
If no files or directories are specified, the current working directory is used by default.
ruff check {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}
Run the linter on the given files or directories:
ruff check --fix
Apply the suggested fixes, modifying the files in-place:
ruff check --watch
Run the linter and re-lint on change:
ruff format
View Details ▼
ruff format
An extremely fast Python code formatter.
If no files or directories are specified, the current working directory is used by default.
ruff format {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}
Format given files or directories in-place:
ruff format --check
Print which files would have been modified and return a non-zero exit code if there are files to reformat, and zero otherwise:
ruff format --diff
Print what changes would be made without modifying the files:
twine
View Details ▼
twine
Utility for publishing Python packages on PyPI.
twine upload dist/*
Upload to PyPI:
twine upload {{[-r|--repository]}} testpypi dist/*
Upload to the Test PyPI repository to verify things look right:
twine upload {{[-u|--username]}} {{username}} {{[-p|--password]}} {{password}} dist/*
Upload to PyPI with a specified username and password:
uvx
View Details ▼
uvx
This command is an alias of `uv tool run`.
tldr uv tool
View documentation for the original command:
