We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DefiBax/mcp_servers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•274 B
from .config import get_config
from .server import mcp, audio_service
def main():
"""Voice Recorder MCP: Record audio and transcribe using Whisper."""
# Config is automatically loaded when server is imported
mcp.run()
__all__ = ["mcp", "audio_service", "main"]