Deta Space (Serverless Personal Cloud API)

Deta Space (Serverless Personal Cloud API) MCP Connector for Claude

A+

Manage your personal cloud via Deta Space — store data in Deta Base and files in Deta Drive directly from any AI agent.

10 tools Official Updated Jun 28, 2026 Official Vinkius Partner

Connect your Deta Space personal cloud to any AI agent and manage your serverless data and files through natural conversation.

What you can do

  • Deta Base (NoSQL) — Store, retrieve, and query JSON data with high performance using tools like base_put_items and base_query_items.
  • Deta Drive (Storage) — Upload, download, and list files in your personal cloud drives using drive_upload_file and drive_list_files.
  • Atomic Updates — Modify specific attributes of your database items without overwriting the entire object via base_update_item.
  • Data Management — Insert new items safely with base_insert_item or delete existing ones by their unique keys.

How it works

  1. Subscribe to this server
  2. Enter your Deta Space App Key and Project ID
  3. Start managing your serverless infrastructure from Claude, Cursor, or any MCP-compatible client

Who is this for?

  • Developers — build and manage serverless backends directly from your IDE.
  • Data Engineers — quickly query and inspect NoSQL collections without leaving the chat interface.
  • Power Users — automate personal file storage and data logging in a private, serverless environment.
nosqlserverlesspersonal-clouddata-storagefile-management

10 tools expose this connector's capabilities to your AI agent.

base_delete_item

Delete an item from Deta Base by its key

base_get_item

Retrieve a single item from Deta Base by its key

base_insert_item

Store an item in Deta Base only if the key does not already exist

base_put_items

Provide items as a JSON array string. Store one or more items in Deta Base

base_query_items

Query should be a JSON array of query objects (OR logic between objects, AND logic within). Search for items in Deta Base based on queries

base_update_item

Update specific attributes of an existing item in Deta Base

drive_delete_files

Delete one or more files from Deta Drive

drive_download_file

Download a file from Deta Drive by its name

drive_list_files

List files in a Deta Drive

drive_upload_file

Upload a file to Deta Drive

See how to talk to your AI agent using Deta Space (Serverless Personal Cloud API).

List all files in my 'backups' drive on Deta.

I've listed the files in 'backups'. I found 3 files: 'db_dump.json', 'config.yaml', and 'logs.txt'. Would you like to download any of them?

Get the item with key 'user_88' from the 'profiles' base.

Retrieved profile for 'user_88': { "name": "Alice", "role": "admin", "status": "active" }. Do you need to update any of these fields?

Increment the 'login_count' by 1 for key 'user_88' in 'profiles'.

Successfully updated 'user_88'. The 'login_count' attribute has been incremented by 1.

Use the `base_query_items` tool. You can provide a JSON array of query objects to filter items by their attributes, and even handle pagination using the `limit` and `last` parameters.

Related Connectors