text-to-speech
Text to Speech API
텍스트를 음성 오디오로 변환합니다 — 20+개 언어, base64 MP3 출력. Google TTS 엔진 기반, 빠르고 안정적입니다. x402를 통한 호출당 과금(Base L2의 USDC) — API 키 없음, 가입 없음, 속도 제한 없음.
klymax402 마켓플레이스의 일부 — AI 에이전트를 위한 60개 x402 소액 결제 API, 하나의 지갑, Base의 USDC.
빠른 시작 — MCP
MCP 클라이언트 설정(Claude Desktop, Cursor, ElizaOS 등)에 추가하세요:
{
"mcpServers": {
"text-to-speech": {
"url": "https://text-to-speech.api.klymax402.com/mcp"
}
}
}Related MCP server: Voice MCP
빠른 시작 — HTTP (x402)
curl -X POST "https://text-to-speech.api.klymax402.com/api/speak" \
-H "Content-Type: application/json" \
-d '{"text":"..."}'
# -> 402 Payment Required, with an x402 payment challenge in the response bodyx402를 인식하는 모든 클라이언트(@x402/fetch, x402-agent-tools, ATXP)는 402 → 서명 → 재시도 사이클을 자동으로 처리합니다.
도구
도구 | 메서드 | 경로 | 가격 | 설명 |
| POST |
| $0.012 | 텍스트를 음성 오디오로 변환 |
media_text_to_speech
텍스트를 오디오로 변환해야 할 때 사용하세요. JSON에서 base64 인코딩된 MP3 오디오를 반환합니다.
매개변수
이름 | 유형 | 필수 | 설명 |
| string | 예 | 음성으로 변환할 텍스트(요청당 최대 크기 200) |
| string | 아니요 | 언어 코드: en, en-US, es, fr, de, it, pt, ja, ko, zh, ar, ru, hi 등(기본값: en) |
응답 예시:
{"audio":"SUQzBAAAAAAAI1RTU0UAAAAP...","language":"en","textLength":45,"durationEstimate":3.2,"format":"mp3"}사용 시기: 오디오 내레이션 생성, 음성 비서 구축, 기사의 오디오 버전 제작, 접근성 기능, 언어 학습 앱 등에 활용합니다.
사용하지 않는 경우: 언어 감지(text_detect_language), 텍스트 번역(text_translate), 이미지의 OCR(text_extract) 등에는 사용하지 마세요.
에이전트 프롬프트 예시
« 텍스트 읽고 TTS 실행 »
번역: "텍스트 읽고 TTS 실행" — Hmm no, this is wrong. Let me redo.
I need to stop and correct this impossible output. The translated bullet should be: * "텍스트를 음성 오디오로 변환해 줘" Not "텍스트 읽고 TTS 실행". I'll fix in final.
Also, I accidentally put " "400" for protection. Final will be clean.
Let me now write the final, carefully:
"매개변수"
"사용 시기: ..."
"사용하지 않는 경우: ..."
Example prompt: "* "텍스트를 음성 오디오로 변환해 줘""
Do not use arrows with unicode "→" maybe source uses "->"; instruction says preserve structure but arrow is content; use "->" to match source: "402 -> 서명 -> 재시도". Yes use "->".
Final punctuation: Use "--" as in source. Do not translate "세대" etc. OK.
Also in "Payment" section, keep "x402" in Protocol: "x402". Good.
Let me produce# Text to Speech API
텍스트를 음성 오디오로 변환합니다 -- 20개 이상의 언어, base64 MP3 출력. Google TTS 엔진 기반, 빠르고 안정적입니다. x402를 통한 호출당 과금(USDC on Base L2) -- API 키 없음, 가입 없음, 속도 제한 없음.
klymax402 마켓플레이스의 일부 -- AI 에이전트를 위한 60개 x402 소액 결제 API, 하나의 지갑, Base의 USDC.
빠른 시작 -- MCP
MCP 클라이언트 설정(Claude Desktop, Cursor, ElizaOS 등)에 추가하세요:
{
"mcpServers": {
"text-to-speech": {
"url": "https://text-to-speech.api.klymax402.com/mcp"
}
}
}빠른 시작 -- HTTP (x402)
curl -X POST "https://text-to-speech.api.klymax402.com/api/speak" \
-H "Content-Type: application/json" \
-d '{"text":"..."}'
# -> 402 Payment Required, with an x402 payment challenge in the response bodyx402를 인식하는 모든 클라이언트(@x402/fetch, x402-agent-tools, ATXP)는 402 -> 서명 -> 재시도 사이클을 자동으로 처리합니다.
도구
도구 | 메서드 | 경로 | 가격 | 설명 |
| POST |
| $0.012 | 텍스트를 음성 오디오로 변환 |
media_text_to_speech
텍스트를 음성 오디오로 변환해야 할 때 사용하세요. base64 인코딩된 MP3 오디오를 JSON으로 반환합니다.
매개변수
이름 | 타입 | 필수 | 설명 |
| string | 예 | 음성으로 변환할 텍스트(요청당 최대 200자) |
| string | 아니요 | 언어 코드: en, fr, es, de, it, pt, ja, ko, zh, ar, ru, hi 등(기본값: en) |
응답 예시:
{"audio":"SUQzBAAAAAAAI1RTU0UAAAAP...","language":"en","textLength":45,"durationEstimate":3.2,"format":"mp3"}사용 시기: 오디오 내레이션 생성, 음성 어시스턴트 구축, 기사의 오디오 버전 제작, 접근성 기능, 언어 학습 앱.
사용하지 않는 경우: 언어 감지(text_detect_language 사용), 텍스트 번역(text_translate 사용), 이미지에서 OCR(media_extract_text_from_image 사용).
에이전트 프롬프트 예시
"텍스트를 음성 오디오로 변환해 줘"
결제
프로토콜: x402 -- HTTP 네이티브 호출당 과금, 가입 없음, API 키 없음
네트워크: Base L2 (
eip155:8453)자산: USDC
Facilitator: Coinbase CDP(기본), PayAI(대체)
ATXP(OAuth로 래핑된 x402, RFC 9728 protected-resource 메타데이터)에서도 접근 가능
klymax402의 일부
AI 에이전트를 위한 60개 x402 소액 결제 API -- 하나의 지갑, Base의 USDC, 가입 없음.
전체 API 레퍼런스: https://klymax402.com/llms-full.txt
실시간 통계: https://qlymax402.com/stats
라이선스
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides Text-to-Speech (TTS) functionality using Google TTS API, enabling audio generation, voice listing, and style templates via MCP.281MIT
- AlicenseAqualityAmaintenanceGive your AI agent a voice with x402 pay-per-call speech synthesis, offering 20 voices, 10 personas, 31 languages, and granular controls.4626MIT
- FlicenseAqualityCmaintenanceEnables text-to-speech conversion using Google Translate's TTS, supporting many languages and accents, and saving MP3 files.2
- AlicenseAqualityBmaintenanceProvides text-to-speech synthesis using Microsoft Edge's free TTS engine, supporting multiple voices, languages, and audio output options (base64 or file).3MIT
Related MCP Connectors
Hosted pay-per-use TTS: 54 neural voices, 9 languages incl. Brazilian Portuguese. $10 free credits.
Discover and call pay-per-request (x402) APIs, ranked by reliability, latency and price.
Agent-payable web data over x402: 18 keyless services an agent pays per call.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Br0ski777/text-to-speech-x402'
If you have feedback or need assistance with the MCP directory API, please join our Discord server