swapped docs symlink

This commit is contained in:
John Lancaster
2026-08-07 21:07:23 -05:00
parent 5005cd7001
commit f240486a7e
92 changed files with 69 additions and 42 deletions
+19
View File
@@ -0,0 +1,19 @@
import uvicorn
from .config import get_settings
def main(cli: bool = True) -> None:
"""Run the root MCP server."""
settings = get_settings(cli=cli)
uvicorn.run(
"personal_mcp.web.app:create_app",
factory=True,
host=settings.host,
port=settings.port,
reload=settings.reload,
)
if __name__ == "__main__":
main()