Skip to content

Commit a9b126f

Browse files
Prep for MCP Registry: mcpName + server.json + bump to 0.7.1
1 parent a964758 commit a9b126f

2 files changed

Lines changed: 42 additions & 3 deletions

File tree

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@instanode/mcp",
3-
"version": "0.7.0",
4-
"description": "MCP server for instanode.dev lets AI coding agents provision ephemeral Postgres databases and webhook receivers over HTTPS, with optional bearer-token auth for paid users.",
3+
"version": "0.7.1",
4+
"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.",
55
"keywords": [
66
"mcp",
77
"claude",
@@ -49,5 +49,6 @@
4949
},
5050
"engines": {
5151
"node": ">=18"
52-
}
52+
},
53+
"mcpName": "io.github.instanode-dev/mcp"
5354
}

server.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3+
"name": "io.github.instanode-dev/mcp",
4+
"description": "Provision ephemeral Postgres databases and webhook receivers from AI coding agents — one HTTP call, live connection URL back, pgvector pre-installed. Free 24h tier; paid Developer tier for permanent resources.",
5+
"repository": {
6+
"url": "https://github.com/InstaNode-dev/mcp",
7+
"source": "github"
8+
},
9+
"version": "0.7.1",
10+
"websiteUrl": "https://instanode.dev",
11+
"packages": [
12+
{
13+
"registryType": "npm",
14+
"identifier": "@instanode/mcp",
15+
"version": "0.7.1",
16+
"transport": {
17+
"type": "stdio"
18+
},
19+
"environmentVariables": [
20+
{
21+
"name": "INSTANODE_TOKEN",
22+
"description": "Optional bearer JWT for paid-tier callers. Mint at https://instanode.dev/dashboard → '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.",
23+
"isRequired": false,
24+
"isSecret": true,
25+
"format": "string"
26+
},
27+
{
28+
"name": "INSTANODE_API_BASE",
29+
"description": "Override the API base URL. Defaults to https://api.instanode.dev. Useful for self-hosted deployments.",
30+
"isRequired": false,
31+
"isSecret": false,
32+
"format": "string",
33+
"default": "https://api.instanode.dev"
34+
}
35+
]
36+
}
37+
]
38+
}

0 commit comments

Comments
 (0)