Skip to main content
Glama

MCP Operator

by willer
__main__.py538 B
#!/usr/bin/env python3 """ Main entry point for MCP Operator server """ import asyncio import argparse from mcp_operator.server import main as server_main def main(): """Parse arguments and run the MCP server""" parser = argparse.ArgumentParser(description="MCP Operator Server") parser.add_argument( "--debug", action="store_true", help="Enable debug logging" ) args = parser.parse_args() # Run the server asyncio.run(server_main()) if __name__ == "__main__": main()

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/willer/mcp-operator'

If you have feedback or need assistance with the MCP directory API, please join our Discord server