epiq 0.7.3 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epiq",
3
- "version": "0.7.3",
3
+ "version": "0.7.5",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "EPIQ - CLI based issue tracker",
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
- To register Epiq with MCP-compatible clients (e.g. Claude Desktop), add it as a server using the `epiq-mcp` binary. Example configuration in your `~/.claude.json`:
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
- "mcpServers": {
166
-
167
- "epiq": {
168
- "command": "npx",
169
- "args": [
170
- "-y",
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
  ---