epiq 0.6.9 → 0.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epiq",
3
- "version": "0.6.9",
3
+ "version": "0.6.11",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "EPIQ - CLI based issue tracker",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "scripts": {
31
31
  "build": "tsc --noEmit",
32
- "build:npm": "node source/scripts/write-version.mjs && rm -rf ./dist && esbuild source/Index.tsx --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/index.js --banner:js='#!/usr/bin/env node' && esbuild source/mcp/server.ts --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/mcp.js --banner:js='#!/usr/bin/env node'",
32
+ "build:npm": "node source/scripts/write-version.mjs && rm -rf ./dist && esbuild source/Index.tsx --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/index.js --banner:js='#!/usr/bin/env node' && esbuild source/mcp/index.ts --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/mcp.js --banner:js='#!/usr/bin/env node'",
33
33
  "build:sea:bundle": "node source/scripts/write-version.mjs && rm -rf ./dist && esbuild source/Index.tsx --bundle --platform=node --format=cjs --target=node18 --minify --outfile=dist/sea.cjs",
34
34
  "build:sea": "node --build-sea source/config/sea-config.json",
35
35
  "build:publish": "npm run build:npm",
package/readme.md CHANGED
@@ -139,15 +139,21 @@ Clear all filters with `:filter clear`
139
139
 
140
140
  Epiq provides a MCP (Model Context Protocol) server for agents to interact with, making it easy to plug into modern agent frameworks.
141
141
 
142
- To register Epiq with MCP-compatible clients (e.g. Claude Desktop), add it as a server using the `epiq-mcp` binary. Example configuration:
142
+ 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`:
143
143
 
144
144
  ```json
145
- {
146
- "mcpServers": {
147
- "epiq": {
148
- "command": "epiq-mcp"
149
- }
145
+ "mcpServers": {
146
+ ...
147
+ "epiq": {
148
+ "command": "npx",
149
+ "args": [
150
+ "-y",
151
+ "-p",
152
+ "epiq",
153
+ "epiq-mcp"
154
+ ]
150
155
  }
156
+ ...
151
157
  }
152
158
  ```
153
159