Skip to main content
Glama

TTS-MCP

by nakamurau1
types.d.ts1.13 kB
export type OpenAIVoice = 'alloy' | 'ash' | 'coral' | 'echo' | 'fable' | 'onyx' | 'nova' | 'sage' | 'shimmer'; export type ExtendedOpenAIVoice = OpenAIVoice | 'ballad' | 'verse'; export type OpenAIOutputFormat = 'mp3' | 'opus' | 'aac' | 'flac' | 'wav' | 'pcm'; export type OpenAITTSModel = 'tts-1' | 'tts-1-hd' | 'gpt-4o-mini-tts'; /** * テキスト音声変換のオプション */ export interface TTSOptions { text: string; outputPath?: string; model: OpenAITTSModel; voice: OpenAIVoice; speed: number; format: OpenAIOutputFormat; instructions?: string; apiKey: string; } /** * コマンドラインオプション */ export interface CommandLineOptions { text?: string; file?: string; output?: string; model?: OpenAITTSModel; voice?: OpenAIVoice; speed?: number; format?: OpenAIOutputFormat; instructions?: string; apiKey?: string; logFile?: string; } /** * MCPサーバー設定 */ export interface MCPServerConfig { model: OpenAITTSModel; voice: OpenAIVoice; format: OpenAIOutputFormat; apiKey: string; logFile?: string; }

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/nakamurau1/tts-mcp'

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