Change default port to 3000

This commit is contained in:
Kacper Kwapisz
2026-03-22 21:55:49 +01:00
parent fc9a2bb8f8
commit 48b3f3816f
3 changed files with 9 additions and 7 deletions
+1 -1
View File
@@ -842,7 +842,7 @@ async def get_server_info(ctx: Context) -> dict:
# ---------------------------------------------------------------------------
if __name__ == "__main__":
port = int(os.environ.get("PORT", 8000))
port = int(os.environ.get("PORT", 3000))
host = "0.0.0.0"
logger.info("Starting poke-mail on %s:%d", host, port)
mcp.run(transport="http", host=host, port=port, stateless_http=True)