memory-bridge-mcp 1.2.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.
@@ -0,0 +1,7 @@
1
+ """memory-bridge-mcp — unified MCP memory server.
2
+
3
+ Bridges Mind (concept graph) and Honcho (semantic vector) memory
4
+ with episodic timeline and LLM synthesis into a single MCP query surface.
5
+ """
6
+
7
+ __version__ = "1.2.0"
@@ -0,0 +1,6 @@
1
+ """memory-bridge-mcp — entry point for `memory-bridge` CLI command."""
2
+
3
+ from memory_bridge.server import main
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1 @@
1
+ """Vendored mind concept-graph memory module."""