Skip to main content
Glama

list_voices

Retrieve available text-to-speech voices for use with macOS speech commands, enabling precise voice selection in applications.

Instructions

List available text-to-speech voices

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the list_voices tool: executes 'say -v "?"' to list macOS TTS voices and returns the stdout as text content, with error handling.
    case 'list_voices': {
      try {
        const { stdout } = await execAsync('say -v "?"');
        return {
          content: [
            {
              type: 'text',
              text: stdout,
            },
          ],
        };
      } catch (error: any) {
        throw new McpError(
          ErrorCode.InternalError,
          `Failed to list voices: ${error.message}`
        );
      }
    }
  • src/index.ts:75-82 (registration)
    Registration of the list_voices tool in the ListToolsRequestSchema response, including name, description, and input schema (no required params).
    {
      name: 'list_voices',
      description: 'List available text-to-speech voices',
      inputSchema: {
        type: 'object',
        properties: {},
      },
    },
  • Input schema for list_voices tool: empty object schema (no parameters).
    inputSchema: {
      type: 'object',
      properties: {},
    },
Install Server

Other Tools

Related Tools

  • @samihalawa/advanced-tts-mcp
  • @turlockmike/apple-notifier-mcp
  • @bmorphism/say-mcp-server
  • @hammeiam/koroko-speech-mcp
  • @johnmatthewtennant/mcp-voice-hooks
  • @Yuki10Kobayashi/voicevox-mcp

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bmorphism/say-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server