mcp-ai-music 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -39,7 +39,7 @@
39
39
  ],
40
40
  "env": {
41
41
  "SUNO_API_KEY": "您的Suno API密钥",
42
- "SUNO_SERVICE_BASE": "https://www.mcpcn.cc"
42
+ "SUNO_SERVICE_BASE": "https://www.mcpcn.cc/api"
43
43
  },
44
44
  "autoApprove": [
45
45
  "generate_music",
@@ -163,7 +163,6 @@
163
163
  ```
164
164
 
165
165
  **状态说明:**
166
- - `pending`: 任务排队中
167
166
  - `processing`: 正在处理中
168
167
  - `text`: 文本生成完成,正在生成音频
169
168
  - `first`: 第一首音乐生成完成
package/dist/index.js CHANGED
@@ -611,7 +611,7 @@ async function handleQueryProgress(input) {
611
611
  let statusMessage = "";
612
612
  switch (status) {
613
613
  case 'pending':
614
- statusMessage = "任务排队中...";
614
+ statusMessage = "正在处理中...";
615
615
  break;
616
616
  case 'processing':
617
617
  statusMessage = "正在处理中...";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-ai-music",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "AI作曲MCP服务 - 基于Suno4.5 API的音乐生成、翻唱、扩展和进度查询工具",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {