update_deepseek_token
Modify the Deepseek API key within the VoiceAI-MCP-VAVicky platform to ensure continuous and secure access to Deepseek services for custom integrations.
Instructions
Update Deepseek API Key
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deepseek_token | Yes | Deepseek API Key |
Implementation Reference
- index.js:528-532 (handler)Handler logic in executeTool switch statement: sets URL to /deepseek/oauth, method POST, and body with deepseek_token, then fetches the API.case 'update_deepseek_token': url = `${this.baseUrl}/deepseek/oauth`; method = 'POST'; body = { deepseek_token: args.deepseek_token }; break;
- index.js:102-110 (schema)Tool schema definition in listTools response, specifying input schema requiring deepseek_token string.name: 'update_deepseek_token', description: 'Update Deepseek API Key', inputSchema: { type: 'object', properties: { deepseek_token: { type: 'string', description: 'Deepseek API Key' } }, required: ['deepseek_token'] }