@depxray/mcp 1.3.0 → 1.3.1

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 +4 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -18,7 +18,7 @@ The server runs locally over stdio and uses `@depxray/core`, the same scanner th
18
18
  ## Quick Start
19
19
 
20
20
  ```bash
21
- npx @depxray/mcp
21
+ npx --package @depxray/mcp depxray-mcp
22
22
  ```
23
23
 
24
24
  Most users do not run this command directly. Add it to your MCP client configuration so the client can start the server when needed.
@@ -43,7 +43,7 @@ Add this to your Claude Desktop MCP configuration:
43
43
  "mcpServers": {
44
44
  "depxray": {
45
45
  "command": "npx",
46
- "args": ["@depxray/mcp"]
46
+ "args": ["--package", "@depxray/mcp", "depxray-mcp"]
47
47
  }
48
48
  }
49
49
  }
@@ -56,7 +56,7 @@ Add a new MCP server with:
56
56
  ```json
57
57
  {
58
58
  "command": "npx",
59
- "args": ["@depxray/mcp"]
59
+ "args": ["--package", "@depxray/mcp", "depxray-mcp"]
60
60
  }
61
61
  ```
62
62
 
@@ -108,4 +108,4 @@ Your MCP client may still send tool results to its own model provider. Review yo
108
108
  This package is the MCP interface for depxray.
109
109
 
110
110
  - Use `npx depxray scan` for the browser UI, CLI JSON output, and static HTML reports.
111
- - Use `npx @depxray/mcp` when an MCP-compatible AI coding agent needs depxray tools.
111
+ - Use `npx --package @depxray/mcp depxray-mcp` when an MCP-compatible AI coding agent needs depxray tools.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@depxray/mcp",
3
- "version": "1.3.0",
4
- "description": "MCP server for depxray dependency analysis and AI-agent codebase context.",
3
+ "version": "1.3.1",
4
+ "description": "Dependency-aware MCP server that gives AI coding agents codebase context, import graphs, circular checks, and orphan-file insights.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "prepublishOnly": "node ../../scripts/sync-versions.mjs && npm run build"
21
21
  },
22
22
  "dependencies": {
23
- "@depxray/core": "1.3.0",
23
+ "@depxray/core": "1.3.1",
24
24
  "@modelcontextprotocol/sdk": "^1.29.0",
25
25
  "zod": "^4.4.3"
26
26
  },