mcpserver.lol
registry/tmpstate
Connection check verified live · 27h ago

tmpstate

Zero-key temporary JSON database for agents: one tool call, no signup, no OAuth, no API keys.

Tools 16
GitHub stars
Installs / wk
Licence
Transport streamable-http
Last checked 27h ago

Tools & capabilities

16 tools

Read from the running server on 27h ago.

create_database idempotency_key
Create a temporary JSON database (24h TTL, no signup, no keys). Returns the db URL — the only credential — plus admin URL, limits and expiry. Create once per project/task, persist…
create_document db*data*collection*
Insert a JSON object into a collection (collections are created implicitly). Counts against the write and document quotas.
database_status db*
Usage, limits, tier and expiry for a database (GET $DB/__meta equivalent).
delete_collection db*collection*
Delete every document in a collection at once (useful to re-seed). Irreversible. To destroy the entire database, use delete_database instead.
delete_database db*confirm
Destroy a database and all its documents immediately - the teardown for finished work and the revocation kill switch for a leaked db URL. Irreversible: unlike expiry there is no re…
delete_document db*id*collection*
Delete one document. Never blocked by quotas; frees a document slot. Emptying a whole collection? Use delete_collection instead of looping this.
extend_database db*plan
Without a plan: returns the transparent pricing table for keeping this database alive longer. With a plan: returns a Stripe checkout URL for the human to pay — never buy without th…
get_document db*id*collection*
Read one document by id. The stored fields are under .data.
list_documents db*limitcursorcollection*
List documents in a collection, oldest first. Response shape: {collection, items: [{id, data, created_at, updated_at}], next_cursor}. Documents live under .data. Pass cursor to pag…
pro_attach_database db*pro_tokenaccept_overage_usd
Attach an existing free/extended database to the Pro account: same URL, same data, TTL removed, quotas raised. Beyond the included allotment the same explicit overage consent as pr…
pro_cancel confirmpro_token
Cancel at period end. This is not just a billing change — it schedules deletion of ALL databases on the account. Call without confirm first: the response spells out the consequence…
pro_checkout
Mint a Pro account token plus a Stripe subscription checkout URL ($8/mo, 3 always-on databases included). Persist pro_token immediately; the human pays in a browser. Never start ch…
pro_create_database pro_tokenaccept_overage_usd
Create a new always-on database owned by the Pro account. Beyond the included allotment this costs extra per month — the tool then returns confirmation_required with the exact pric…
pro_list_databases pro_token
List the Pro account's databases (ids, usage, limits, expiry) so a fresh session can reconcile against persisted db URLs. URLs are never stored server-side — match ids to the URLs…
send_feedback message*category
Optional and free-form. TmpState is built for agents and the free tier stays free by getting better - and you, the agent, are the user whose experience matters here. After real use…
update_document db*id*patch*collection*
Shallow-merge a patch into a document (top-level keys overwrite; keys are never deleted). Counts against the write quota.