zephex 2.0.7 → 2.0.11
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/dist/cli.js +15 -6
- package/dist/index.js +331 -135
- package/dist/tools/architecture/index.js +61 -20
- package/dist/tools/context/index.js +27 -10
- package/dist/tools/reader/readCode.js +32 -12
- package/dist/tools/scope_task/index.js +87 -26
- package/dist/tools/search/findCode.js +18 -16
- package/dist/tools/server.js +1398 -143
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -87,12 +87,21 @@ Add the following to your MCP config:
|
|
|
87
87
|
Get your API key at: https://zephex.dev/dashboard/api-keys
|
|
88
88
|
|
|
89
89
|
Config file locations:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
Claude
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
90
|
+
VS Code: .vscode/mcp.json (uses "servers" key, not "mcpServers")
|
|
91
|
+
Cursor: .cursor/mcp.json
|
|
92
|
+
Claude Desktop (macOS): ~/Library/Application Support/Claude/claude_desktop_config.json
|
|
93
|
+
Claude Desktop (Windows): %APPDATA%\\Claude\\claude_desktop_config.json
|
|
94
|
+
Claude Code: .mcp.json (or run: claude mcp add zephex -- npx -y zephex)
|
|
95
|
+
Windsurf: ~/.codeium/windsurf/mcp_config.json
|
|
96
|
+
JetBrains: Settings > Tools > AI Assistant > MCP
|
|
97
|
+
Zed: settings.json (uses "context_servers" key)
|
|
98
|
+
Gemini CLI: ~/.gemini/settings.json
|
|
99
|
+
Cline: cline_mcp_settings.json (via MCP Servers icon)
|
|
100
|
+
OpenCode: opencode.json (uses "mcp" key, type "local")
|
|
101
|
+
Codex CLI: ~/.codex/config.toml (TOML format)
|
|
102
|
+
Goose: goose configure > Add Extension
|
|
103
|
+
Factory AI: .factory/mcp.json (type "stdio" required)
|
|
104
|
+
Kiro CLI: kiro mcp add zephex -- npx -y zephex
|
|
96
105
|
`);
|
|
97
106
|
process.exit(0);
|
|
98
107
|
}
|