@kolbo/mcp 1.86.0 → 1.86.4

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.
@@ -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);