← tmpstate.dev
INDIVIDUAL MCP TOOL
pro_create_database
Create a new always-on database owned by the Pro account.
Input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent endpoint
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).update_document— Shallow-merge a patch into a document (top-level keys overwrite; keys are never deleted).delete_document— Delete one document.delete_collection— Delete every document in a collection at once (useful to re-seed).