-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
38 lines (38 loc) · 1.36 KB
/
server.json
File metadata and controls
38 lines (38 loc) · 1.36 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.InstaNode-dev/mcp",
"description": "Provision Postgres databases + webhooks from AI coding agents in one HTTP call.",
"repository": {
"url": "https://github.com/InstaNode-dev/mcp",
"source": "github"
},
"version": "0.7.2",
"websiteUrl": "https://instanode.dev",
"packages": [
{
"registryType": "npm",
"identifier": "@instanode/mcp",
"version": "0.7.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "INSTANODE_TOKEN",
"description": "Optional bearer JWT for paid-tier callers. Mint at https://instanode.dev/dashboard \u2192 'API token for CLI / agent'. Lifts the free-tier 5-per-subnet-per-day provisioning cap and auto-links new resources to your account. Leave unset to use the free tier anonymously.",
"isRequired": false,
"isSecret": true,
"format": "string"
},
{
"name": "INSTANODE_API_BASE",
"description": "Override the API base URL. Defaults to https://api.instanode.dev. Useful for self-hosted deployments.",
"isRequired": false,
"isSecret": false,
"format": "string",
"default": "https://api.instanode.dev"
}
]
}
]
}