We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandraschi/windows-operations-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•370 B
'''MCP server entry point for Windows Operations MCP.
This is the MCPB-compliant server wrapper.
'''
import sys
from pathlib import Path
parent_dir = Path(__file__).parent.parent.parent
sys.path.insert(0, str(parent_dir))
try:
from server import main
except ImportError:
from windows_operations_mcp.server import main
if __name__ == '__main__':
main()