contextl 1.2.42 → 1.2.43

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contextl",
3
- "version": "1.2.42",
3
+ "version": "1.2.43",
4
4
  "description": "contextl — finds the most relevant files in your codebase for any change request. MCP server for AI coding agents.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -75,10 +75,10 @@ def install_mcp():
75
75
  with open(path, "w", encoding="utf-8") as f:
76
76
  json.dump(config, f, indent=2)
77
77
 
78
- print(f" Successfully injected ContextL MCP Server into: {path}")
78
+ print(f"[SUCCESS] Successfully injected ContextL MCP Server into: {path}")
79
79
  success_count += 1
80
80
  except Exception as e:
81
- print(f" Failed to parse or write to {path}: {e}")
81
+ print(f"[ERROR] Failed to parse or write to {path}: {e}")
82
82
 
83
83
  if success_count > 0:
84
84
  print("\nInstallation successful! Please restart your IDE or AI Client (e.g. reload the window) for the changes to take effect.")