Provision Postgres databases + webhooks from AI coding agents in one HTTP call.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Insta Node Dev MCP.
create_postgresPOST /db/new` β Provision a Postgres database (pgvector included). Returns `connection_url` + the `note`/`upgrade` claim URL. `name` required.
create_vectorPOST /vector/new` β Provision a pgvector-enabled Postgres database (embedding store). Returns `connection_url` + `extension`/`dimensions` + `note`/`upgrade`. `name` required; optional `dimensions` is a documentation hint.
create_cachePOST /cache/new` β Provision a Redis cache (ACL-scoped user + namespace). Returns `connection_url` + `note`/`upgrade`. `name` required.
create_nosqlPOST /nosql/new` β Provision a MongoDB database (per-resource user + DB-scoped role). Returns `connection_url` + `note`/`upgrade`. `name` required.
create_queuePOST /queue/new` β Provision a NATS JetStream queue (scoped subject namespace). Returns `connection_url` + `note`/`upgrade`. `name` required.
create_storagePOST /storage/new` β Provision an S3-compatible bucket prefix (DigitalOcean Spaces). Returns endpoint, access keys, prefix + `note`/`upgrade`. `name` required.
MCP server for instanode.dev. Lets AI coding agents (Claude Code, Cursor, Windsurf, Continue, etc.) provision the full bundle of ephemeral developer infrastructure over HTTPS β no Docker, no signup required for the free anonymous tier.
One tool call per resource type, each returning a drop-in connection string:
create_postgres) β postgres://... with pgvector pre-installedcreate_cache) β redis://... with ACL-scoped user + namespacecreate_nosql) β mongodb://... with role scoped to the DBcreate_queue) β nats://... with scoped subject namespacecreate_storage) β endpoint + keys + prefix
(backed by DigitalOcean Spaces)create_webhook) β public URL that stores every
inbound requestcreate_deploy) β upload a base64 gzip tarball
(Dockerfile + source), get back a public URL in ~30s. Bind any of the
resources above by passing their tokens as resource_bindings β the API
resolves tokens to connection URLs server-side.create_stack) β declare 1..N services in an
instant.yaml manifest, ship them as a bundle in a single MCP call. Anonymous
callers get a 6h-TTL stack with a live URL on
*.deployment.instanode.dev β no card required. Cross-service refs
(service://<name>) resolve cluster-internally at deploy time. Poll
status with get_stack.Every anonymous resource auto-expires in 24h. The provision response carries
a note and upgrade field β the MCP server surfaces both verbatim so the
agent can show the user the exact CTA + claim URL needed to keep the
resource permanently. Run claim_resource on the returned upgrade_jwt to
get the dashboard claim URL.
To authenticate (unlock paid-tier limits and the account-management tools):
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
Add to ~/.codeium/windsurf/mcp_config.json:
Add to your ~/.continue/config.yaml:
For a drop-in CLAUDE.md / .cursorrules that tells the agent exactly when
to reach for this MCP, see https://instanode.dev/agent.html.
| Variable | Required | Default | Purpose |
|---|---|---|---|
INSTANODE_TOKEN | No | β | Bearer JWT minted at https://instanode.dev/dashboard. Required for list_resources, claim_token, delete_resource, get_api_token, and all deploy tools (create_deploy, list_deployments, get_deployment, redeploy, delete_deployment). Unlocks paid-tier limits on every create_*. |
INSTANODE_API_URL | No | https://api.instanode.dev | Override the API base URL. Only set this for local development against a k3s cluster. |
INSTANODE_DASHBOARD_URL | No | https://instanode.dev | Override the dashboard host that claim_resource builds claim URLs against. Only set this for staging. |
| Tool | Description |
|---|---|
create_postgres | POST /db/new β Provision a Postgres database (pgvector included). Returns connection_url + the note/upgrade claim URL. name required. |
create_vector | POST /vector/new β Provision a pgvector-enabled Postgres database (embedding store). Returns connection_url + extension/dimensions + note/upgrade. name required; optional dimensions is a documentation hint. |
create_cache | POST /cache/new β Provision a Redis cache (ACL-scoped user + namespace). Returns connection_url + note/upgrade. name required. |
create_nosql | POST /nosql/new β Provision a MongoDB database (per-resource user + DB-scoped role). Returns connection_url + note/upgrade. name required. |
create_queue | POST /queue/new β Provision a NATS JetStream queue (scoped subject namespace). Returns connection_url + note/upgrade. name required. |
create_storage | POST /storage/new β Provision an S3-compatible bucket prefix (DigitalOcean Spaces). Returns endpoint, access keys, prefix + note/upgrade. name required. |
create_webhook | POST /webhook/new β Provision an inbound webhook receiver URL. Returns receive_url + note/upgrade. name required. |
create_deploy | POST /deploy/new β Upload a base64 gzip tarball (with Dockerfile) and deploy a container. Returns deploy_id, status, url, build_logs_url. name required. Pass redeploy: true (with the SAME name) to update an existing deployment IN PLACE (same app_id + URL). Requires INSTANODE_TOKEN. |
create_stack | POST /stacks/new β Multi-service bundle. Upload an instant.yaml manifest plus one base64 gzip tarball per service; returns stack_id, per-service URLs, and the 6h-TTL claim block on the anonymous tier. Anonymous-friendly (the wedge). name, manifest, service_tarballs required. |
get_stack | GET /stacks/{stack_id} β Poll a stack's per-service status + URLs. Anonymous-friendly. stack_id required. |
list_deployments | GET /api/v1/deployments β List all deployments on the caller's team. Requires INSTANODE_TOKEN. |
get_deployment | GET /api/v1/deployments/:id β Fetch one deployment (poll until status="running"). Requires INSTANODE_TOKEN. |
get_deployment_events | GET /api/v1/deployments/:id/events β Read the failure-timeline autopsy for a deployment (kind/reason/exit_code/event/last_lines/hint/created_at, newest first) so an agent can self-correct a broken Dockerfile. Optional limit. Requires INSTANODE_TOKEN. |
redeploy | POST /deploy/:id/redeploy β Push updated code to an existing deployment BY ID. Same URL, new build. Requires tarball_base64 (same shape as create_deploy) β the api never reuses the original tarball. For the more common "update by name" path prefer create_deploy({ name, redeploy: true, tarball_base64 }). Requires INSTANODE_TOKEN. |
delete_deployment | DELETE /deploy/:id β Tear down a running deployment. Irreversible. Requires INSTANODE_TOKEN. |
claim_resource | Helper β turn an upgrade_jwt from any create_* response into the dashboard claim URL the user should click. No API call. No auth required. |
claim_token | POST /claim β Programmatic claim: attach an anonymous resource to the authenticated account using its upgrade_jwt + email. No auth required. |
list_resources | GET /api/v1/resources β List resources on the caller's account. Requires INSTANODE_TOKEN. |
delete_resource | DELETE /api/v1/resources/{token} β Hard-delete a resource you own. Paid tier only. Requires INSTANODE_TOKEN. |
get_api_token | POST /api/v1/auth/api-keys β Mint a fresh bearer Personal Access Token (PAT). Requires an existing user-session INSTANODE_TOKEN (PATs cannot mint other PATs β the API returns 403 in that case). |
get_capabilities | GET /api/v1/capabilities β Read the live per-tier capability matrix (storage / connection / resource-count / deployment caps, pricing, backup + RPO/RTO promises) in upgrade order so an agent can plan a provision before a call 402s. Auth optional (public discovery surface). |
set_vault_key | PUT /api/v1/vault/{env}/{key} β Write a secret to the team vault (always a new version). Reference it from a deploy as vault://{env}/{key} in env_vars; the API decrypts it at deploy time. Vault is paid (Hobby+ = 20 entries, Pro/Team = unlimited; Hobby/Pro restrict env to production). Requires INSTANODE_TOKEN. |
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-197)<a href="https://allmcps.com/mcp/mcp-197"><img src="https://allmcps.com/api/badge/mcp-197?style=directory" alt="Insta Node Dev MCP on AllMCPs" /></a>