6188617037
Environment Corruption Check / test-python-versions (3.12.8) (push) Failing after 2s
Environment Corruption Check / test-python-versions (3.11.11) (push) Failing after 1s
Pre-commit checks / pre-commit-check (push) Failing after 1s
Environment Corruption Check / test-python-versions (3.13.2) (push) Failing after 4s
12 lines
342 B
Python
12 lines
342 B
Python
# coding: utf-8
|
|
# A shortcut to launch OpenManus MCP server, where its introduction also solves other import issues.
|
|
from app.mcp.server import MCPServer, parse_args
|
|
|
|
|
|
if __name__ == "__main__":
|
|
args = parse_args()
|
|
|
|
# Create and run server (maintaining original flow)
|
|
server = MCPServer()
|
|
server.run(transport=args.transport)
|