← tmpstate.dev

INDIVIDUAL MCP TOOL

update_document

Shallow-merge a patch into a document (top-level keys overwrite; keys are never deleted).

tmpstate.devnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

tmpstate.dev

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.tmpstate]
url = "https://tmpstate.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "tmpstate": {
      "type": "http",
      "url": "https://tmpstate.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: tmpstate
Remote MCP URL: https://tmpstate.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "tmpstate": {
      "url": "https://tmpstate.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "tmpstate": {
      "type": "http",
      "url": "https://tmpstate.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "tmpstate",
  "transport": "streamable-http",
  "url": "https://tmpstate.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • create_database — Create a temporary JSON database (24h TTL, no signup, no keys).
  • database_status — Usage, limits, tier and expiry for a database (GET $DB/__meta equivalent).
  • list_documents — List documents in a collection, oldest first.
  • get_document — Read one document by id.
  • create_document — Insert a JSON object into a collection (collections are created implicitly).
  • delete_document — Delete one document.
  • delete_collection — Delete every document in a collection at once (useful to re-seed).
  • delete_database — Destroy a database and all its documents immediately - the teardown for finished work and the revocation kill switch for a leaked db URL.