@senoldogann/context-manager 0.1.5 → 0.1.6

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.
Files changed (3) hide show
  1. package/README.md +11 -7
  2. package/bin/ccm.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -18,16 +18,20 @@ Run the indexer in your project root:
18
18
  npx @senoldogann/context-manager index --path .
19
19
  ```
20
20
 
21
- ## 🤖 AI Editor Integration (MCP)
21
+ ## ⚒️ Manual Configuration (Alternative)
22
22
 
23
- Add this to your `mcp_config.json`:
23
+ If you prefer to configure your AI editor manually without the `install` command, add this to your `mcp_config.json`:
24
24
 
25
25
  ```json
26
- "context-manager": {
27
- "command": "npx",
28
- "args": ["-y", "@senoldogann/context-manager", "mcp"],
29
- "env": {
30
- "RUST_LOG": "info"
26
+ {
27
+ "mcpServers": {
28
+ "context-manager": {
29
+ "command": "npx",
30
+ "args": ["-y", "@senoldogann/context-manager", "mcp"],
31
+ "env": {
32
+ "RUST_LOG": "info"
33
+ }
34
+ }
31
35
  }
32
36
  }
33
37
  ```
package/bin/ccm.js CHANGED
@@ -6,7 +6,7 @@ const fs = require('fs');
6
6
  const os = require('os');
7
7
  const https = require('https');
8
8
 
9
- const VERSION = '0.1.5';
9
+ const VERSION = '0.1.6';
10
10
  const REPO = 'senoldogann/LLM-Context-Manager';
11
11
  const BIN_DIR = path.join(os.homedir(), '.ccm', 'bin');
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@senoldogann/context-manager",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "LLM Context Manager MCP Server & CLI wrapper using npx",
5
5
  "main": "bin/ccm.js",
6
6
  "bin": {