taurusdb-mcp 0.5.0-rc.4 → 0.5.0-rc.5
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 +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -45,7 +45,6 @@ claude mcp add huaweicloud-taurusdb \
|
|
|
45
45
|
--transport stdio \
|
|
46
46
|
-e TAURUSDB_CLOUD_REGION=<your-region> \
|
|
47
47
|
-e TAURUSDB_CLOUD_KEYCHAIN_SERVICE=taurusdb-mcp/huaweicloud \
|
|
48
|
-
-e TAURUSDB_ENABLE_DYNAMIC_TARGETS=true \
|
|
49
48
|
-- npx -y taurusdb-mcp
|
|
50
49
|
```
|
|
51
50
|
|
|
@@ -55,7 +54,6 @@ Codex:
|
|
|
55
54
|
codex mcp add huaweicloud-taurusdb \
|
|
56
55
|
--env TAURUSDB_CLOUD_REGION=<your-region> \
|
|
57
56
|
--env TAURUSDB_CLOUD_KEYCHAIN_SERVICE=taurusdb-mcp/huaweicloud \
|
|
58
|
-
--env TAURUSDB_ENABLE_DYNAMIC_TARGETS=true \
|
|
59
57
|
-- npx -y taurusdb-mcp
|
|
60
58
|
```
|
|
61
59
|
|
|
@@ -96,6 +94,7 @@ npx taurusdb-mcp credentials check
|
|
|
96
94
|
- Recycle-bin request/status tools are visible by default: `prepare_recycle_bin_restore` performs readonly preflight and the loopback-only operator page requires the Agent-invisible HttpOnly browser session established by database login before executing one target-bound native restore with the active in-memory SQL session; no secret file, direct restore tool, or Agent-held execution token is required
|
|
97
95
|
- `analyze_mutation_sql` returns evidence-backed SQL Advice with `execution_status: not_executed`
|
|
98
96
|
- Selecting a cloud instance returns a local SQL login link immediately; login validates the connection before binding credentials, allows at most three attempts per five-minute link, and never sends the password through Agent-visible tool arguments
|
|
97
|
+
- Instance selection and local login tools are enabled by default; fixed static deployments may set `TAURUSDB_ENABLE_DYNAMIC_TARGETS=false`
|
|
99
98
|
- Session SQL credentials expire after 30 idle minutes and eight absolute hours; administrators may shorten these limits with `TAURUSDB_SQL_CREDENTIAL_IDLE_TTL_MINUTES` and `TAURUSDB_SQL_CREDENTIAL_MAX_TTL_MINUTES`
|
|
100
99
|
- MCP audit events are written to `~/.taurusdb-mcp/audit.jsonl` by default, with
|
|
101
100
|
configurable size rotation for collection into centralized immutable storage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taurusdb-mcp",
|
|
3
|
-
"version": "0.5.0-rc.
|
|
3
|
+
"version": "0.5.0-rc.5",
|
|
4
4
|
"description": "TaurusDB MCP server for Claude, Cursor, VS Code, and other MCP clients.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"test": "node --test tests/*.test.mjs"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"taurusdb-core": "0.5.0-rc.
|
|
47
|
+
"taurusdb-core": "0.5.0-rc.5",
|
|
48
48
|
"@modelcontextprotocol/sdk": "^1.17.0",
|
|
49
49
|
"mysql2": "^3.22.1",
|
|
50
50
|
"zod": "^3.24.1"
|