We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arcaputo3/mcp-server-whisper'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•461 B
"""Whisper MCP server - Minimal server setup with tool registration."""
from mcp.server.fastmcp import FastMCP
# Initialize FastMCP server
mcp = FastMCP("whisper", dependencies=["openai", "pydub", "aiofiles"])
def main() -> None:
"""Run main entrypoint."""
# Import and register tools at runtime (not at module import time)
from .tools import register_all_tools
register_all_tools(mcp)
mcp.run()
if __name__ == "__main__":
main()