@kolbo/mcp 1.86.0 → 1.86.3
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/package.json +2 -1
- package/skill/SKILL.md +435 -434
- package/skill/references/models/3d.md +51 -0
- package/skill/references/models/seedance.md +32 -4
- package/skill/references/workflows/cost-and-validation.md +1 -1
- package/src/apps/index.js +750 -737
- package/src/apps/theme.js +13 -0
- package/src/apps/widgets/generation.js +16 -11
- package/src/apps/widgets/mediaGrid.js +14 -1
- package/src/index.js +6 -1
- package/src/toolAnnotations.js +1 -1
- package/src/tools/_shared.js +183 -32
- package/src/tools/artifacts.js +5 -2
- package/src/tools/generate.js +141 -36
- package/src/tools/media.js +2 -2
- package/src/tools/projects.js +15 -0
- package/src/tools/visual_dna.js +459 -456
- package/src/tools/voices.js +1 -1
package/src/tools/voices.js
CHANGED
|
@@ -119,7 +119,7 @@ function registerVoiceTools(server, client, options = {}) {
|
|
|
119
119
|
project_id: z.string().optional().describe('Project to associate the voice with (from list_projects). Omit for the default project.')
|
|
120
120
|
},
|
|
121
121
|
async ({ audio, voice_name, provider, language, project_id }) => {
|
|
122
|
-
const resolved = await resolveToBuffer(audio, 'audio');
|
|
122
|
+
const resolved = await resolveToBuffer(audio, 'audio', { allowLocalFiles: !options.remote });
|
|
123
123
|
const form = new FormData();
|
|
124
124
|
form.append('audioFile', resolved.buffer, { filename: resolved.filename, contentType: resolved.contentType });
|
|
125
125
|
form.append('voiceName', voice_name);
|