decibel-tools-mcp 1.0.5 → 1.0.7

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 +15 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -54,6 +54,21 @@ npx decibel-tools-mcp
54
54
  }
55
55
  ```
56
56
 
57
+ ### Claude Code
58
+
59
+ Add to `~/.claude/settings.json`:
60
+
61
+ ```json
62
+ {
63
+ "mcpServers": {
64
+ "decibel-tools": {
65
+ "command": "npx",
66
+ "args": ["-y", "decibel-tools-mcp"]
67
+ }
68
+ }
69
+ }
70
+ ```
71
+
57
72
  ### Claude Desktop
58
73
 
59
74
  Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS):
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "decibel-tools-mcp",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "bin": {
5
- "decibel-tools-mcp": "./dist/server.js"
5
+ "decibel-tools-mcp": "dist/server.js"
6
6
  },
7
7
  "description": "MCP server exposing Decibel tools (Designer, Architect, Sentinel, Oracle) over stdio",
8
8
  "main": "dist/server.js",