We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kvadratni/speech-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
Main UI module for the Speech MCP.
This module provides the main entry point for the UI component of the Speech MCP.
"""
import os
import sys
from speech_mcp.ui.pyqt import run_ui
def main():
"""Run the Speech UI."""
# Run the PyQt UI
return run_ui()
if __name__ == "__main__":
sys.exit(main())