security-controls-mcp 0.3.4__py3-none-any.whl → 0.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  """Security Controls MCP Server - Query security framework controls and mappings."""
2
2
 
3
- __version__ = "0.3.3"
3
+ __version__ = "0.4.0"
@@ -2,7 +2,13 @@
2
2
 
3
3
  import asyncio
4
4
 
5
- from .server import main
5
+ from .server import main as async_main
6
+
7
+
8
+ def main():
9
+ """Sync entry point for the MCP server."""
10
+ asyncio.run(async_main())
11
+
6
12
 
7
13
  if __name__ == "__main__":
8
- asyncio.run(main())
14
+ main()