capybara-db-mcp 1.0.3 → 1.0.4

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/dist/index.js +8 -5
  2. package/package.json +20 -23
package/dist/index.js CHANGED
@@ -3460,11 +3460,14 @@ var SERVER_NAME = "DBHub MCP Server";
3460
3460
  function generateBanner(version, modes = []) {
3461
3461
  const modeText = modes.length > 0 ? ` [${modes.join(" | ")}]` : "";
3462
3462
  return `
3463
- ____ ___ _____ __ __ ____ ___ _____ ___
3464
- / ___| / _ \\ | __ \\ \\ \\ / / | _ \\ / _ \\ | __ \\ |_ _|
3465
- | | | | | || |__) | \\ V / | |_) | | | || |__) | | |
3466
- | |___ | |_| || __/ | | | _ < | |_| || _ < | |
3467
- \\____| \\___/ |_| |_| |_| \\_\\ \\___/
3463
+ _
3464
+ | |
3465
+ ___ __ _ _ __ _ _ | |__ __ _ _ __ __ _
3466
+ / __| / _\` || '_ \\ | | | || '_ \\ / _\` || '__| / _\` |
3467
+ | (__ | (_| || |_) || |_| || |_) || (_| || | | (_| |
3468
+ \\___| \\__,_|| .__/ \\__, ||_.__/ \\__,_||_| \\__,_|
3469
+ | | __/ |
3470
+ |_| |___/
3468
3471
 
3469
3472
  v${version}${modeText} - Minimal Readonly Database MCP Server
3470
3473
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capybara-db-mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "mcpName": "io.github.ajgreyling/capybara-db-mcp",
5
5
  "description": "Minimal, token-efficient Database Read-Only PPI-safe MCP Server for PostgreSQL, MySQL, SQL Server, SQLite, MariaDB. Fork of DBHub with default-schema support.",
6
6
  "repository": {
@@ -17,23 +17,6 @@
17
17
  "LICENSE",
18
18
  "README.md"
19
19
  ],
20
- "scripts": {
21
- "build": "pnpm run generate:api-types && tsup && cd frontend && pnpm run build",
22
- "build:backend": "pnpm run generate:api-types && tsup",
23
- "build:frontend": "cd frontend && pnpm run build",
24
- "start": "node dist/index.js",
25
- "dev": "concurrently --kill-others \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
26
- "dev:backend": "NODE_ENV=development tsx src/index.ts --transport=http",
27
- "dev:frontend": "cd frontend && pnpm run dev",
28
- "crossdev": "cross-env NODE_ENV=development tsx src/index.ts",
29
- "generate:api-types": "openapi-typescript src/api/openapi.yaml -o src/api/openapi.d.ts",
30
- "test": "vitest run",
31
- "test:unit": "vitest run --project unit",
32
- "test:watch": "vitest",
33
- "test:integration": "vitest run --project integration",
34
- "test:query-timeout": "tsx scripts/test-query-timeout.ts",
35
- "release": "pnpm run build && npm publish"
36
- },
37
20
  "keywords": [],
38
21
  "author": "",
39
22
  "license": "MIT",
@@ -74,9 +57,6 @@
74
57
  "typescript": "^5.8.2",
75
58
  "vitest": "^4.0.6"
76
59
  },
77
- "pnpm": {
78
- "onlyBuiltDependencies": ["better-sqlite3"]
79
- },
80
60
  "compilerOptions": {
81
61
  "target": "ES2020",
82
62
  "module": "NodeNext",
@@ -88,5 +68,22 @@
88
68
  },
89
69
  "include": [
90
70
  "src/**/*"
91
- ]
92
- }
71
+ ],
72
+ "scripts": {
73
+ "build": "pnpm run generate:api-types && tsup && cd frontend && pnpm run build",
74
+ "build:backend": "pnpm run generate:api-types && tsup",
75
+ "build:frontend": "cd frontend && pnpm run build",
76
+ "start": "node dist/index.js",
77
+ "dev": "concurrently --kill-others \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
78
+ "dev:backend": "NODE_ENV=development tsx src/index.ts --transport=http",
79
+ "dev:frontend": "cd frontend && pnpm run dev",
80
+ "crossdev": "cross-env NODE_ENV=development tsx src/index.ts",
81
+ "generate:api-types": "openapi-typescript src/api/openapi.yaml -o src/api/openapi.d.ts",
82
+ "test": "vitest run",
83
+ "test:unit": "vitest run --project unit",
84
+ "test:watch": "vitest",
85
+ "test:integration": "vitest run --project integration",
86
+ "test:query-timeout": "tsx scripts/test-query-timeout.ts",
87
+ "release": "pnpm run build && npm publish"
88
+ }
89
+ }