@fractary/codex-mcp 0.2.1 → 0.3.0

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 (2) hide show
  1. package/README.md +7 -15
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -37,7 +37,7 @@ Add to your `.claude/settings.json`:
37
37
  "mcpServers": {
38
38
  "fractary-codex": {
39
39
  "command": "npx",
40
- "args": ["-y", "@fractary/codex-mcp-server", "--config", ".fractary/codex.yaml"]
40
+ "args": ["-y", "@fractary/codex-mcp-server", "--config", ".fractary/codex/config.yaml"]
41
41
  }
42
42
  }
43
43
  }
@@ -46,7 +46,7 @@ Add to your `.claude/settings.json`:
46
46
  ### Stdio Mode (Default)
47
47
 
48
48
  ```bash
49
- fractary-codex-mcp --config .fractary/codex.yaml
49
+ fractary-codex-mcp --config .fractary/codex/config.yaml
50
50
  ```
51
51
 
52
52
  The server communicates via stdin/stdout using the MCP protocol.
@@ -61,11 +61,11 @@ The server exposes an SSE (Server-Sent Events) endpoint for HTTP clients.
61
61
 
62
62
  ## Configuration
63
63
 
64
- Create a `.fractary/codex.yaml` configuration file:
64
+ Create a `.fractary/codex/config.yaml` configuration file:
65
65
 
66
66
  ```yaml
67
67
  cache:
68
- dir: .codex-cache
68
+ dir: .fractary/codex/cache
69
69
  maxMemorySize: 104857600 # 100 MB
70
70
  defaultTtl: 3600 # 1 hour
71
71
 
@@ -79,7 +79,7 @@ storage:
79
79
 
80
80
  ### Environment Variables
81
81
 
82
- - `FRACTARY_CONFIG`: Path to configuration file (default: `.fractary/codex.yaml`)
82
+ - `FRACTARY_CONFIG`: Path to configuration file (default: `.fractary/codex/config.yaml`)
83
83
  - `GITHUB_TOKEN`: GitHub personal access token for GitHub storage provider
84
84
 
85
85
  ## Available Tools
@@ -241,7 +241,7 @@ If you were using the MCP server from `@fractary/codex` (versions ≤0.1.x), upd
241
241
  "mcpServers": {
242
242
  "fractary-codex": {
243
243
  "command": "npx",
244
- "args": ["@fractary/codex", "mcp", "--config", ".fractary/codex.yaml"]
244
+ "args": ["@fractary/codex", "mcp", "--config", ".fractary/codex/config.yaml"]
245
245
  }
246
246
  }
247
247
  }
@@ -253,7 +253,7 @@ If you were using the MCP server from `@fractary/codex` (versions ≤0.1.x), upd
253
253
  "mcpServers": {
254
254
  "fractary-codex": {
255
255
  "command": "npx",
256
- "args": ["-y", "@fractary/codex-mcp-server", "--config", ".fractary/codex.yaml"]
256
+ "args": ["-y", "@fractary/codex-mcp-server", "--config", ".fractary/codex/config.yaml"]
257
257
  }
258
258
  }
259
259
  }
@@ -270,14 +270,6 @@ MIT
270
270
  - [@fractary/codex](https://www.npmjs.com/package/@fractary/codex) - Core SDK
271
271
  - [@fractary/codex-cli](https://www.npmjs.com/package/@fractary/codex-cli) - CLI tool
272
272
 
273
- ## Documentation
274
-
275
- - [Command Reference](../../docs/guides/command-reference.md) - Complete command reference for all interfaces
276
- - [API Reference](../../docs/guides/api-reference.md) - Complete API documentation
277
- - [Naming Conventions](../../docs/guides/naming-conventions.md) - Naming standards across all interfaces
278
- - [MCP Migration Guide](../../docs/guides/mcp-migration-guide.md) - Migrating from old MCP tool names
279
- - [Troubleshooting](../../docs/guides/troubleshooting.md) - Common issues and solutions
280
-
281
273
  ## Links
282
274
 
283
275
  - [GitHub Repository](https://github.com/fractary/codex)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fractary/codex-mcp",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "MCP server for Fractary Codex knowledge management",
5
5
  "keywords": [
6
6
  "codex",
@@ -50,7 +50,7 @@
50
50
  "prepublishOnly": "npm run build && npm run test"
51
51
  },
52
52
  "dependencies": {
53
- "@fractary/codex": "^0.2.0",
53
+ "@fractary/codex": "^0.3.0",
54
54
  "commander": "^11.1.0",
55
55
  "js-yaml": "^4.1.0"
56
56
  },