devtoolkit-mcp 0.1.0 → 0.1.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.
- package/README.md +9 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,25 +29,22 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
|
|
|
29
29
|
}
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
### Claude Code
|
|
32
|
+
### Claude Code (CLI & VSCode Extension)
|
|
33
|
+
|
|
34
|
+
Add globally (available in all projects):
|
|
33
35
|
|
|
34
36
|
```bash
|
|
35
|
-
claude mcp add devtoolkit -- npx -y devtoolkit-mcp
|
|
37
|
+
claude mcp add -s user devtoolkit -- npx -y devtoolkit-mcp
|
|
36
38
|
```
|
|
37
39
|
|
|
38
|
-
Or add
|
|
40
|
+
Or add for current project only:
|
|
39
41
|
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
"mcpServers": {
|
|
43
|
-
"devtoolkit": {
|
|
44
|
-
"command": "npx",
|
|
45
|
-
"args": ["-y", "devtoolkit-mcp"]
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
42
|
+
```bash
|
|
43
|
+
claude mcp add devtoolkit -- npx -y devtoolkit-mcp
|
|
49
44
|
```
|
|
50
45
|
|
|
46
|
+
> **Note:** Do NOT manually edit `~/.claude/.mcp.json` — use `claude mcp add` to register servers correctly.
|
|
47
|
+
|
|
51
48
|
### Cursor
|
|
52
49
|
|
|
53
50
|
Add to `~/.cursor/mcp.json`:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devtoolkit-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "25+ developer utilities as an MCP server — JSON repair, SQL format, hash, encode/decode, UUID, regex, CSV transform, subnet calc, and more. No API keys. Runs locally.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|