Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.InstaNode-dev/mcp

NPM · @INSTANODE/MCP · SCANNED AUG 3

Provision Postgres databases + webhooks from AI coding agents in one HTTP call.

Available components

+22 this week 68 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 701 tokens (~116/item across 6 items; 6 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @instanode/mcp

# add to Claude Code
claude mcp add instanode-dev-mcp -- npx -y @instanode/mcp
# add to Codex CLI
codex mcp add instanode-dev-mcp -- npx -y @instanode/mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "instanode-dev-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@instanode/mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add instanode-dev-mcp --command npx --arg -y --arg @instanode/mcp
# ~/.hermes/config.yaml
mcp_servers:
  instanode-dev-mcp:
    command: "npx"
    args: ["-y", "@instanode/mcp"]
// mcp.json
{
  "mcpServers": {
    "instanode-dev-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@instanode/mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +62
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Security disclosure: fail → unverified functional
    • Tool coverage: unverified → 100 functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Schema quality: unverified → good functional
    • Licence: MIT functional
  • 1 Aug 26 −23
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 +3
    • Malware scan: pass → unverified security
    • Dependency health: partial → unverified functional
    • Tool coverage: unverified → 100 functional
  • 29 Jul 26 −21
    • Tool coverage: 100 → unverified functional
    • Dependency health: unverified → partial functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@instanode/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 6 exposed · ~701 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
claim_token ~117

Attach an anonymous token (returned by create_postgres / create_webhook) to the authenticated caller's account. Idempotent — re-claiming a token you already own returns the same payload. For paid callers, the resource's tier is upgraded to 'paid' and its expiry is cleared. For free callers, the resource stays anonymous-tier but is now visible on the dashboard. Requires INSTANODE_TOKEN.

NameTypeReqDescription
tokenstringyesResource token (UUID) returned by create_postgres or create_webhook.

No output schema declared.

No examples provided.

create_postgres ~178

Provision a fresh Postgres database on instanode.dev. pgvector is pre-installed. Returns a standard postgres:// connection URL that any driver can use directly as DATABASE_URL — no wrapper SDK, no setup. The 'name' field is required (the human label surfaced on the dashboard). Without INSTANODE_TOKEN: free tier — 10 MB, 2 connections, expires in 24h, capped at 5 provisions/day per /24 subnet. With INSTANODE_TOKEN (paid): 500 MB, 5 connections, permanent, no subnet cap. Store the connection_url in an env var (DATABASE_URL); do not hardcode it.

NameTypeReqDescription
namestringyesHuman-readable label for this database (1–64 chars). Example: 'prospector-agent' or 'test-pgpid-123'.

No output schema declared.

No examples provided.

create_webhook ~158

Provision an inbound webhook receiver URL on instanode.dev. Returns a receive_url that accepts any HTTP method from any sender and stores each request (method, headers, body, received_at). GET the same URL to pull back the stored log. The 'name' field is required. Useful for: testing Stripe/GitHub/Slack webhooks locally, inspecting payloads during development, building integrations without exposing a local port. Without INSTANODE_TOKEN: free tier — up to 100 requests stored, 24h TTL. With INSTANODE_TOKEN (paid): 1000 stored, permanent.

NameTypeReqDescription
namestringyesHuman-readable label for this receiver (1–64 chars). Example: 'stripe-sandbox'.

No output schema declared.

No examples provided.

delete_resource ~93

Permanently delete one of the caller's resources. Drops the underlying Postgres database (or clears the webhook's request log), then marks the row status='deleted'. Paid tier only. Free-tier resources auto-expire in 24h and cannot be deleted manually — the tool will surface the upgrade URL. Requires INSTANODE_TOKEN.

NameTypeReqDescription
tokenstringyesResource token (UUID) to delete.

No output schema declared.

No examples provided.

get_api_token ~95

Mint a fresh 30-day bearer JWT for the authenticated caller and return it as plain text. The user should paste the returned token into their MCP server config as INSTANODE_TOKEN (or export it as an env var for CLI use). Requires an existing INSTANODE_TOKEN (or a session cookie, though session cookies aren't available in this transport). This is primarily useful for rotating an expiring token.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

list_resources ~60

List resources on the caller's instanode.dev account, newest first. Requires INSTANODE_TOKEN to be set. Mint one at https://instanode.dev/dashboard. Returns each resource's type, token, tier, status, name, and expiry.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.