You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: make resource name required on all provisioning tools (#7)
The InstaNode API now requires the `name` field on every provisioning
endpoint. The six create_* resource tools (postgres, cache, nosql, queue,
storage, webhook) already required `name`; this makes `create_deploy`'s
`name` required too — it was the only optional one.
- create_deploy: `name` schema is no longer .optional(); description
clarifies it is required.
- client.ts: CreateDeployParams.name is now required; createDeploy always
appends `name` to the multipart form.
- Bump 0.9.0 -> 0.10.0 (package.json, server.json, User-Agent).
- README: note `name` required on create_deploy.
- Sync stale package-lock.json (was @instant/mcp@0.4.0).
Build (tsc) and test.sh both pass.
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "instanode-mcp",
3
-
"version": "0.10.1",
3
+
"version": "0.11.0",
4
4
"description": "MCP server for instanode.dev \u2014 lets AI coding agents provision ephemeral Postgres, Redis, MongoDB, NATS queues, S3-compatible object storage, webhook receivers, and deploy containerized apps over HTTPS, with optional bearer-token auth for paid users.",
0 commit comments