truss-db-mcp 1.0.0 → 1.0.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/mcpize.yaml +32 -0
- package/package.json +16 -4
- package/evals/test.db +0 -0
package/mcpize.yaml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# MCPize manifest - https://mcpize.com
|
|
2
|
+
# Generated by mcpize analyze
|
|
3
|
+
version: 1
|
|
4
|
+
runtime: typescript
|
|
5
|
+
build:
|
|
6
|
+
install: npm install
|
|
7
|
+
command: npm run build
|
|
8
|
+
startCommand:
|
|
9
|
+
type: stdio
|
|
10
|
+
command: node dist/index.js
|
|
11
|
+
credentials:
|
|
12
|
+
- name: TRUSS_LICENSE_KEY
|
|
13
|
+
required: false
|
|
14
|
+
description: License key for Pro features (optional)
|
|
15
|
+
mapping:
|
|
16
|
+
env: TRUSS_LICENSE_KEY
|
|
17
|
+
- name: DATABASE_URL
|
|
18
|
+
required: false
|
|
19
|
+
description: 'Database connection URL (postgres:// or mysql://)'
|
|
20
|
+
mapping:
|
|
21
|
+
env: DATABASE_URL
|
|
22
|
+
- name: ANTHROPIC_API_KEY
|
|
23
|
+
required: false
|
|
24
|
+
description: API key for AI-powered query features (Pro tier)
|
|
25
|
+
mapping:
|
|
26
|
+
env: ANTHROPIC_API_KEY
|
|
27
|
+
- name: OPENAI_API_KEY
|
|
28
|
+
required: false
|
|
29
|
+
description: Alternative AI API key (Pro tier)
|
|
30
|
+
mapping:
|
|
31
|
+
env: OPENAI_API_KEY
|
|
32
|
+
credentials_mode: per_user
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "truss-db-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Database query MCP server for Claude Code — SQLite, PostgreSQL, and MySQL with AI-powered query tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"mcp",
|
|
17
|
+
"mcp-server",
|
|
18
|
+
"model-context-protocol",
|
|
17
19
|
"database",
|
|
18
20
|
"sqlite",
|
|
19
21
|
"postgresql",
|
|
@@ -22,7 +24,13 @@
|
|
|
22
24
|
"query",
|
|
23
25
|
"claude",
|
|
24
26
|
"claude-code",
|
|
25
|
-
"
|
|
27
|
+
"cursor",
|
|
28
|
+
"ai",
|
|
29
|
+
"ai-agent",
|
|
30
|
+
"agent",
|
|
31
|
+
"db",
|
|
32
|
+
"orm",
|
|
33
|
+
"tool"
|
|
26
34
|
],
|
|
27
35
|
"author": "TRUSS",
|
|
28
36
|
"license": "MIT",
|
|
@@ -35,8 +43,12 @@
|
|
|
35
43
|
"mysql2": "^3.11.0"
|
|
36
44
|
},
|
|
37
45
|
"peerDependenciesMeta": {
|
|
38
|
-
"pg": {
|
|
39
|
-
|
|
46
|
+
"pg": {
|
|
47
|
+
"optional": true
|
|
48
|
+
},
|
|
49
|
+
"mysql2": {
|
|
50
|
+
"optional": true
|
|
51
|
+
}
|
|
40
52
|
},
|
|
41
53
|
"devDependencies": {
|
|
42
54
|
"typescript": "^5.5.0",
|
package/evals/test.db
DELETED
|
Binary file
|