Server data from the Official MCP Registry
RunAPI MCP server for Suno: create tasks, poll status, and check pricing.
RunAPI MCP server for Suno: create tasks, poll status, and check pricing.
This MCP server is well-structured with proper authentication via API keys and appropriate permission scoping for its purpose as a Suno API wrapper. The code demonstrates good practices including environment variable handling, input validation via Zod schemas, and comprehensive testing. Minor code quality issues exist but do not materially impact security. Supply chain analysis found 1 known vulnerability in dependencies (1 critical, 0 high severity). Package verification found 1 issue.
7 files analyzed · 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: RUNAPI_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-runapi-builder-suno-mcp": {
"env": {
"RUNAPI_API_KEY": "your-runapi-api-key-here"
},
"args": [
"-y",
"@runapi.ai/suno-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
RunAPI MCP server for the Suno model line. Create tasks, poll their status, and check pricing through a single RunAPI API key.
cover_audio — create a Suno task (cover audio) and (optionally) poll until it reaches a terminal status. Returns the task id, status, output URLs, and a price snapshot. Models: suno-v4, suno-v4.5, suno-v4.5-all, suno-v4.5-plus, suno-v5, suno-v5.5.create_mashup — create a Suno task (create mashup) and (optionally) poll until it reaches a terminal status. Returns the task id, status, output URLs, and a price snapshot. Models: suno-v4, suno-v4.5, suno-v4.5-all, suno-v4.5-plus, suno-v5, suno-v5.5.extend_music — create a Suno task (extend music) and (optionally) poll until it reaches a terminal status. Returns the task id, status, output URLs, and a price snapshot. Models: suno-v4, suno-v4.5, suno-v4.5-all, suno-v4.5-plus, suno-v5, suno-v5.5.text_to_music — create a Suno task (text to music) and (optionally) poll until it reaches a terminal status. Returns the task id, status, output URLs, and a price snapshot. Models: suno-v4, suno-v4.5, suno-v4.5-all, suno-v4.5-plus, suno-v5, suno-v5.5.text_to_sound — create a Suno task (text to sound) and (optionally) poll until it reaches a terminal status. Returns the task id, status, output URLs, and a price snapshot. Models: suno-v4, suno-v4.5, suno-v4.5-all, suno-v4.5-plus, suno-v5, suno-v5.5.get_task — fetch the current status and latest payload for a task.check_pricing — look up pricing for a model in this line.Set a RunAPI API key via the RUNAPI_API_KEY environment variable, or write
it to ~/.config/runapi/config.json:
mkdir -p ~/.config/runapi
echo '{"api_key":"YOUR_KEY"}' > ~/.config/runapi/config.json
Get an API key at https://runapi.ai. Pricing is listed at https://runapi.ai/pricing.
Run the server over stdio:
npx -y @runapi.ai/suno-mcp
Add it to an MCP client (see examples/ for per-client configs):
{
"mcpServers": {
"suno": {
"command": "npx",
"args": ["-y", "@runapi.ai/suno-mcp"],
"env": { "RUNAPI_API_KEY": "${RUNAPI_API_KEY}" }
}
}
}
Apache-2.0
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.