-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@instanode/mcp",
"version": "0.7.3",
"description": "MCP server for instanode.dev \u2014 lets AI coding agents provision ephemeral Postgres databases and webhook receivers over HTTPS, with optional bearer-token auth for paid users.",
"keywords": [
"mcp",
"claude",
"cursor",
"windsurf",
"instanode.dev",
"postgres",
"provisioning",
"ai-agent",
"database"
],
"author": "instanode.dev <admin@instanode.dev>",
"license": "MIT",
"homepage": "https://instanode.dev",
"repository": {
"type": "git",
"url": "https://github.com/InstaNode-dev/mcp"
},
"bugs": {
"email": "admin@instanode.dev"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"instanode-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "bash test.sh",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"mcpName": "io.github.InstaNode-dev/mcp"
}