claude-self-reflect 2.5.4 → 2.5.5
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,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "claude-self-reflect-mcp"
|
|
3
|
-
version = "2.5.
|
|
3
|
+
version = "2.5.5"
|
|
4
4
|
description = "MCP server for Claude self-reflection with memory decay"
|
|
5
5
|
# readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -12,7 +12,7 @@ dependencies = [
|
|
|
12
12
|
"qdrant-client>=1.7.0,<2.0.0",
|
|
13
13
|
"voyageai>=0.1.0,<1.0.0",
|
|
14
14
|
"python-dotenv>=1.0.0,<2.0.0",
|
|
15
|
-
"pydantic>=2.
|
|
15
|
+
"pydantic>=2.11.7,<3.0.0", # Updated for fastmcp 2.10.6 compatibility
|
|
16
16
|
"pydantic-settings>=2.0.0,<3.0.0",
|
|
17
17
|
"fastembed>=0.4.0,<1.0.0",
|
|
18
18
|
]
|
package/mcp-server/src/server.py
CHANGED
|
@@ -956,7 +956,14 @@ async def search_by_file(
|
|
|
956
956
|
files_analyzed = payload.get('files_analyzed', [])
|
|
957
957
|
files_edited = payload.get('files_edited', [])
|
|
958
958
|
|
|
959
|
-
|
|
959
|
+
# Check for exact match or if any file ends with the normalized path
|
|
960
|
+
file_match = False
|
|
961
|
+
for file in files_analyzed + files_edited:
|
|
962
|
+
if file == normalized_path or file.endswith('/' + normalized_path) or file.endswith('\\' + normalized_path):
|
|
963
|
+
file_match = True
|
|
964
|
+
break
|
|
965
|
+
|
|
966
|
+
if file_match:
|
|
960
967
|
all_results.append({
|
|
961
968
|
'score': 1.0, # File match is always 1.0
|
|
962
969
|
'payload': payload,
|