slideforge-mcp 5.5.1__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.
@@ -0,0 +1,5 @@
1
+ """SlideForge local stdio MCP server (thin REST client over api.slideforge.dev)."""
2
+
3
+ from slideforge_mcp.server import main, mcp
4
+
5
+ __all__ = ["main", "mcp"]
@@ -0,0 +1,6 @@
1
+ """Enable `python -m slideforge_mcp` to launch the stdio server."""
2
+
3
+ from slideforge_mcp.server import main
4
+
5
+ if __name__ == "__main__":
6
+ main()