@fractary/codex-mcp 0.10.8 → 0.10.9
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/README.md +15 -9
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.d.cts +0 -0
- package/dist/index.cjs +0 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -62,32 +62,38 @@ Fetch a document by its codex:// URI with automatic caching.
|
|
|
62
62
|
|
|
63
63
|
**Parameters:**
|
|
64
64
|
- `uri` (string, required) - Codex URI (e.g., `codex://org/project/docs/file.md`)
|
|
65
|
-
- `
|
|
66
|
-
- `
|
|
65
|
+
- `noCache` (boolean, optional) - Bypass cache and fetch fresh content
|
|
66
|
+
- `branch` (string, optional) - Git branch to fetch from (default: `main`)
|
|
67
67
|
|
|
68
68
|
### codex_cache_list
|
|
69
69
|
|
|
70
70
|
List documents currently in the cache.
|
|
71
71
|
|
|
72
72
|
**Parameters:**
|
|
73
|
-
- `
|
|
74
|
-
- `
|
|
73
|
+
- `org` (string, optional) - Filter by organization
|
|
74
|
+
- `project` (string, optional) - Filter by project
|
|
75
|
+
- `includeExpired` (boolean, optional) - Include expired cache entries
|
|
75
76
|
|
|
76
77
|
### codex_cache_clear
|
|
77
78
|
|
|
78
|
-
Clear cache entries.
|
|
79
|
+
Clear cache entries matching a pattern.
|
|
79
80
|
|
|
80
81
|
**Parameters:**
|
|
81
|
-
- `pattern` (string,
|
|
82
|
-
- `all` (boolean, optional) - Clear entire cache
|
|
82
|
+
- `pattern` (string, required) - URI pattern to invalidate (supports regex)
|
|
83
83
|
|
|
84
84
|
### codex_cache_stats
|
|
85
85
|
|
|
86
|
-
Get cache statistics (entry count, total size, hit rates).
|
|
86
|
+
Get cache statistics (entry count, total size, hit rates).
|
|
87
|
+
|
|
88
|
+
**Parameters:**
|
|
89
|
+
- `json` (boolean, optional) - Return raw JSON stats object
|
|
87
90
|
|
|
88
91
|
### codex_cache_health
|
|
89
92
|
|
|
90
|
-
Run diagnostics on the codex setup.
|
|
93
|
+
Run diagnostics on the codex setup.
|
|
94
|
+
|
|
95
|
+
**Parameters:**
|
|
96
|
+
- `json` (boolean, optional) - Return raw JSON health check results
|
|
91
97
|
|
|
92
98
|
### codex_file_sources_list
|
|
93
99
|
|