9 lines
147 B
Python
9 lines
147 B
Python
|
|
"""Allow running the web researcher MCP server as a module.
|
||
|
|
|
||
|
|
Usage: python -m researchers.web
|
||
|
|
"""
|
||
|
|
|
||
|
|
from researchers.web.server import main
|
||
|
|
|
||
|
|
main()
|