We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/noersy/kokoro-voice-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_speak.py•341 B
import asyncio
import sys
from mcp_kokoro import speak
async def test():
print("Testing speak tool...")
result = await speak("Hello! This is a test of the Kokoro Text to Speech system.")
print(result)
if __name__ == "__main__":
try:
asyncio.run(test())
except Exception as e:
print(f"Test failed: {e}")