epiq 0.7.4 → 0.7.5
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/gui/main.js +1 -1
- package/dist/index.js +42 -42
- package/dist/mcp.js +43 -43
- package/package.json +1 -1
- package/readme.md +25 -13
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -157,26 +157,38 @@ Clear all filters with `:filter clear`
|
|
|
157
157
|
|
|
158
158
|
## MCP & Agent Compatibility
|
|
159
159
|
|
|
160
|
-
Epiq provides a MCP (Model Context Protocol) server for agents to interact with, making it easy to plug into modern agent frameworks.
|
|
160
|
+
Epiq provides a MCP (Model Context Protocol) server for agents to interact with, making it easy to plug into modern agent frameworks. The server is exposed by the `epiq-mcp` binary that ships with the package.
|
|
161
161
|
|
|
162
|
-
|
|
162
|
+
### Claude Code
|
|
163
|
+
|
|
164
|
+
The reliable way to register the server is with the `claude mcp add` command — it writes to the correct config file for you, so you don't have to hand-edit JSON:
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
# Available everywhere (recommended)
|
|
168
|
+
claude mcp add --scope user epiq -- npx -y -p epiq epiq-mcp
|
|
169
|
+
|
|
170
|
+
# Or only in the current project
|
|
171
|
+
claude mcp add epiq -- npx -y -p epiq epiq-mcp
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
Use `--scope user` to make Epiq available in every directory; omit it to register Epiq only for the current project. Verify the connection with `claude mcp list` (it should report `epiq … ✔ Connected`). MCP servers are loaded at startup, so **restart Claude Code** after adding the server before its tools become available.
|
|
175
|
+
|
|
176
|
+
### Other MCP clients
|
|
177
|
+
|
|
178
|
+
For clients that are configured by hand, add the following to the client's MCP config file — note this is **not** the same as Claude Code's `~/.claude.json`; Claude Desktop uses `claude_desktop_config.json`:
|
|
163
179
|
|
|
164
180
|
```json
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
"-p",
|
|
172
|
-
"epiq",
|
|
173
|
-
"epiq-mcp"
|
|
174
|
-
]
|
|
181
|
+
{
|
|
182
|
+
"mcpServers": {
|
|
183
|
+
"epiq": {
|
|
184
|
+
"command": "npx",
|
|
185
|
+
"args": ["-y", "-p", "epiq", "epiq-mcp"]
|
|
186
|
+
}
|
|
175
187
|
}
|
|
176
|
-
|
|
177
188
|
}
|
|
178
189
|
```
|
|
179
190
|
|
|
191
|
+
|
|
180
192
|
Once registered, agents can interact with your local Epiq instance through the MCP.
|
|
181
193
|
|
|
182
194
|
---
|