File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " webhook-mcp-server"
3- version = " 2.0.4 "
3+ version = " 2.0.5 "
44description = " MCP Server for webhook.site API integration with layered architecture"
55requires-python = " >=3.10"
66dependencies = [
@@ -9,7 +9,7 @@ dependencies = [
99]
1010
1111[project .scripts ]
12- webhook-mcp-server = " server:main "
12+ webhook-mcp-server = " server:run_server "
1313
1414[project .urls ]
1515Repository = " https://github.com/zebbern/webhook-mcp-server"
Original file line number Diff line number Diff line change @@ -90,5 +90,10 @@ async def main() -> None:
9090 )
9191
9292
93- if __name__ == "__main__" :
93+ def run_server () -> None :
94+ """Synchronous entry point for console script."""
9495 asyncio .run (main ())
96+
97+
98+ if __name__ == "__main__" :
99+ run_server ()
You can’t perform that action at this time.
0 commit comments