kg-mcp 0.1.8__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.
kg_mcp/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ """
2
+ MCP-KG-Memory: Memory/Knowledge Graph MCP Server
3
+ """
4
+
5
+ __version__ = "0.1.0"
kg_mcp/__main__.py ADDED
@@ -0,0 +1,8 @@
1
+ """
2
+ Entry point for running the module with: python -m kg_mcp
3
+ """
4
+
5
+ from kg_mcp.main import main
6
+
7
+ if __name__ == "__main__":
8
+ main()
kg_mcp/cli/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """
2
+ CLI module for interactive setup and configuration.
3
+ """