We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77fe32f + ec813d5 commit 5bfb3faCopy full SHA for 5bfb3fa
elevenlabs_mcp/server.py
@@ -226,19 +226,6 @@ def text_to_sound_effects(
226
)
227
228
229
-@mcp.tool(description="List all available voices")
230
-def list_voices() -> list[McpVoice]:
231
- """List all available voices.
232
- Returns:
233
- A formatted list of available voices with their IDs and names
234
- """
235
- response = client.voices.get_all()
236
- return [
237
- McpVoice(id=voice.voice_id, name=voice.name, category=voice.category)
238
- for voice in response.voices
239
- ]
240
-
241
242
@mcp.tool(
243
description="""
244
Search for voices by search term. Returns all voices if no search term is provided. Searches in name, description, labels and category.
0 commit comments