@datacore-one/mcp 1.4.1 → 1.5.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 +15 -0
- package/dist/index.js +1510 -279
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,6 +47,21 @@ Add to `.mcp.json` in your project root (or `~/.claude.json` globally):
|
|
|
47
47
|
}
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
+
Then allow Datacore tools in `.claude/settings.json` (or `.claude/settings.local.json`):
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"permissions": {
|
|
55
|
+
"allow": [
|
|
56
|
+
"mcp__datacore"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
"enableAllProjectMcpServers": true
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
This auto-approves all Datacore MCP tools (session, learn, inject, etc.) so you don't get prompted on every call. The `enableAllProjectMcpServers` setting ensures the MCP server defined in `.mcp.json` is activated automatically.
|
|
64
|
+
|
|
50
65
|
### Claude Desktop
|
|
51
66
|
|
|
52
67
|
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|