db4app-mcp-server 0.1.0 → 0.1.2
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 +7 -7
- package/dist/index.js +0 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
#
|
|
1
|
+
# db4app-mcp-server
|
|
2
2
|
|
|
3
3
|
MCP server for db4.app - enables LLMs to interact with browser-based Postgres databases via Model Context Protocol.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g
|
|
8
|
+
npm install -g db4app-mcp-server
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Or use with `npx` (no installation needed):
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx
|
|
14
|
+
npx db4app-mcp-server
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## Usage
|
|
@@ -28,11 +28,11 @@ npx @db4app/mcp-server
|
|
|
28
28
|
```json
|
|
29
29
|
{
|
|
30
30
|
"mcpServers": {
|
|
31
|
-
"
|
|
31
|
+
"db4app": {
|
|
32
32
|
"command": "npx",
|
|
33
33
|
"args": [
|
|
34
34
|
"-y",
|
|
35
|
-
"
|
|
35
|
+
"db4app-mcp-server"
|
|
36
36
|
],
|
|
37
37
|
"env": {
|
|
38
38
|
"MCP_PROXY_HTTP_URL": "http://localhost:8787/query",
|
|
@@ -65,11 +65,11 @@ Add to your `claude_desktop_config.json`:
|
|
|
65
65
|
```json
|
|
66
66
|
{
|
|
67
67
|
"mcpServers": {
|
|
68
|
-
"
|
|
68
|
+
"db4app": {
|
|
69
69
|
"command": "npx",
|
|
70
70
|
"args": [
|
|
71
71
|
"-y",
|
|
72
|
-
"
|
|
72
|
+
"db4app-mcp-server"
|
|
73
73
|
],
|
|
74
74
|
"env": {
|
|
75
75
|
"MCP_PROXY_HTTP_URL": "http://localhost:8787/query",
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "db4app-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "MCP server for db4.app - enables LLMs to interact with browser-based Postgres databases via Model Context Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"mcp-server-
|
|
8
|
+
"mcp-server-db4app": "./dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"LICENSE"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "esbuild src/index.js --bundle --platform=node --format=esm --outfile=dist/index.js --external:node:*
|
|
16
|
+
"build": "esbuild src/index.js --bundle --platform=node --format=esm --outfile=dist/index.js --external:node:*",
|
|
17
17
|
"lint": "eslint src --ext .js",
|
|
18
18
|
"prepublishOnly": "npm run build",
|
|
19
19
|
"start": "node dist/index.js"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
35
|
"url": "https://github.com/db4app/db4app.git",
|
|
36
|
-
"directory": "packages/mcp-server-
|
|
36
|
+
"directory": "packages/mcp-server-db4app"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=18.0.0"
|
|
@@ -47,4 +47,3 @@
|
|
|
47
47
|
"eslint": "^9.39.1"
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
|