Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Transports: stdio vs HTTP
  • State of MCP (stats)
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ—„οΈ Databases
  3. DataClawe β€” Database as a Utility
DataClawe β€” Database as a Utility logo
Health: ActiveRecent health check succeeded.Last checked 9/21/2026, 10:17:00 PM

DataClawe β€” Database as a Utility

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

AI-native database utility. Talk to your DB in plain language. No SQL. MySQL & PostgreSQL.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

One-click editor setup isn’t available for this listing yet β€” we don’t have a confirmed install command, and we’d rather show nothing than point your editor at the wrong package or host. Follow the project’s own setup instructions, linked above.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ
No confirmed setup config for this listing yet. We only publish a config block when the install details come from the project itself β€” its README, its docs, or a verified owner. We haven’t found those for DataClawe β€” Database as a Utility, and we’d rather show nothing than a guess you’d paste into your client. Follow the project’s own setup instructions for the current steps.
Install Directory Badge Claim listing AlternativesπŸ—„οΈ More in Databases

Documentation Overview

DCL β€” DataClawe Command Language

A JSON-based database command standard for AI agents, frontend engineers, and anyone who finds SQL too complex.

"If you understand MySQL and MSX-BASIC, you already understand DCL."


What is DCL?

DCL (DataClawe Command Language) is an open standard for communicating with databases using simple JSON.

It is designed for:

  • AI agents (Claude, GPT, Cursor, and others) to safely read and write structured data
  • Frontend engineers who need database access without writing SQL
  • MCP (Model Context Protocol) tool integration
  • Any application connecting to MySQL or PostgreSQL β€” legacy or new

DCL translates into native SQL internally. Your existing database does not change. Your existing application does not change.


Design Philosophy

DCL follows three rules:

1. If you can read it, you understand it. No cryptic operators. No framework-specific syntax. No : chaining.

2. MySQL words. JSON structure. Actions like SELECT, INSERT, UPDATE, DELETE are exactly what you expect. WHERE conditions are written the way MySQL engineers already write them.

3. MSX-BASIC level simplicity. If a condition like age >= 20 needs an explanation, the design has failed.

4. Simple by default. Powerful when needed. Standard covers most real-world needs. Advanced covers the rest. You never pay the complexity cost until you need it.


Quick Start

Fetch data

config.json
{
  "dcl": "1.0",
  "action": "SELECT",
  "table": "users",
  "columns": ["id", "name", "email"],
  "where": [
    "status = 'active'",
    "age >= 20"
  ],
  "order": "created_at DESC",
  "limit": 10,
  "offset": 0
}

Insert a record

config.json
{
  "dcl": "1.0",
  "action": "INSERT",
  "table": "users",
  "data": {
    "name": "kimura",
    "email": "kimura@example.com",
    "status": "active"
  }
}

Update records

config.json
{
  "dcl": "1.0",
  "action": "UPDATE",
  "table": "users",
  "data": {
    "status": "inactive"
  },
  "where": [
    "id = 123"
  ]
}

Delete a record (logical delete)

config.json
{
  "dcl": "1.0",
  "action": "DELETE",
  "table": "users",
  "where": [
    "id = 123"
  ]
}

Actions

ActionDescriptionRead-only
SELECTFetch one or more recordsβœ…
COUNTCount matching recordsβœ…
EXISTSCheck if a record existsβœ…
SCHEMAGet column definitions for a tableβœ…
TABLESList all available tablesβœ…
STATSGet record count, last updated, and storage sizeβœ…
TIMELINEGet chronological change history of a recordβœ…
INSERTCreate a new record❌
UPDATEUpdate existing records❌
DELETELogical delete (status flag)❌
TABLE_CREATECreate a new table (empty declaration)❌
TABLE_COPYCopy a table❌
TABLE_RENAMERename a table❌
TABLE_DROPLogical delete a table❌

WHERE Conditions

WHERE is an array of condition strings. Multiple conditions are AND by default.

Basic comparisons

json
"where": [
  "status = 'active'",
  "age >= 20",
  "age <= 60",
  "status != 'deleted'"
]

OR conditions

json
"where": {
  "OR": [
    "status = 'active'",
    "status = 'pending'"
  ]
}

AND + OR combined

json
"where": {
  "AND": [
    "age >= 20",
    {
      "OR": [
        "status = 'active'",
        "status = 'pending'"
      ]
    }
  ]
}

LIKE

json
"where": [
  "name LIKE 'kimura%'"
]

IN

json
"where": [
  "status IN ('active', 'pending')"
]

BETWEEN

json
"where": [
  "age BETWEEN 20 AND 60"
]

NULL checks

json
"where": [
  "deleted_at IS NULL"
]
json
"where": [
  "deleted_at IS NOT NULL"
]

Aggregation

config.json
{
  "dcl": "1.0",
  "action": "SELECT",
  "table": "orders",
  "columns": [
    "SUM(amount) AS total",
    "AVG(amount) AS average",
    "COUNT(*) AS count"
  ],
  "where": [
    "status = 'paid'"
  ],
  "group": "customer_id"
}

COUNT

config.json
{
  "dcl": "1.0",
  "action": "COUNT",
  "table": "users",
  "where": [
    "status = 'active'"
  ]
}

EXISTS

config.json
{
  "dcl": "1.0",
  "action": "EXISTS",
  "table": "users",
  "where": [
    "email = 'kimura@example.com'"
  ]
}

SCHEMA

config.json
{
  "dcl": "1.0",
  "action": "SCHEMA",
  "table": "users"
}

TABLES

config.json
{
  "dcl": "1.0",
  "action": "TABLES"
}

TABLE_CREATE β€” Create a table

Declares a new empty table. Internally creates a single status=8 schema declaration row.

config.json
{
  "dcl": "1.0",
  "action": "TABLE_CREATE",
  "table": "users"
}

With optional schema definition:

config.json
{
  "dcl": "1.0",
  "action": "TABLE_CREATE",
  "table": "users",
  "schema": {
    "name":  "text",
    "age":   "integer",
    "email": "text"
  }
}

Without schema: Created with schema: null. Column types are auto-registered as text on first INSERT.


status=8 Schema Declaration Row

DataClawe maintains one status=8 declaration row per table.

status valuePurpose
status=1Normal record (active)
status=8Table declaration + schema cache
status=9Logically deleted

Example status=8 row content:

config.json
{
  "schema": {
    "name":  "text",
    "age":   "text",
    "email": "text"
  }
}

Auto Schema Evolution:

Writing to a non-existent table via INSERT auto-creates the status=8 row. New columns are automatically appended to the status=8 schema on each INSERT (type defaults to text).

Code
First INSERT: {"name": "kimura", "age": 25}
  β†’ Auto-create status=8: {"name":"text", "age":"text"}
  β†’ INSERT the record

Second INSERT: {"name": "suzuki", "phone": "090-xxxx"}
  β†’ "phone" is new β†’ auto-append to status=8 schema
  β†’ schema: {"name":"text", "age":"text", "phone":"text"}

When connecting to legacy MySQL/PostgreSQL, actual column types (VARCHAR(255), INT, etc.) are recorded in the status=8 row.


STATS β€” Table statistics

Returns record count, last updated timestamp, and storage size. Useful for AI agents to assess table state before operating.

config.json
{
  "dcl": "1.0",
  "action": "STATS",
  "table": "users"
}

Example response:

config.json
{
  "dcl": "1.0",
  "status": "OK",
  "data": {
    "table": "users",
    "record_count": 1024,
    "last_updated": "2026-03-28T10:00:00Z",
    "size_kb": 512
  }
}

TIMELINE β€” Record change history

Returns the change history (created, updated, logical delete) of a record in chronological order. Useful for AI agents tracking data evolution.

config.json
{
  "dcl": "1.0",
  "action": "TIMELINE",
  "table": "users",
  "where": [
    "id = 123"
  ]
}

TABLE_COPY β€” Copy a table

Copies a table under a new name. Used for backups, migrations, and testing.

config.json
{
  "dcl": "1.0",
  "action": "TABLE_COPY",
  "table": "users",
  "target_table": "users_backup_20260328"
}

TABLE_RENAME β€” Rename a table

Renames a table.

config.json
{
  "dcl": "1.0",
  "action": "TABLE_RENAME",
  "table": "users_old",
  "new_name": "users_archived"
}

TABLE_DROP β€” Drop a table (logical delete)

Logically deletes a table. Data is not physically removed immediately.

config.json
{
  "dcl": "1.0",
  "action": "TABLE_DROP",
  "table": "users_temp"
}

Note: TABLE_DROP is a logical delete β€” not equivalent to SQL DROP TABLE. Data is not immediately destroyed.


Response Format

Success

config.json
{
  "dcl": "1.0",
  "status": "OK",
  "count": 42,
  "data": [
    { "id": 1, "name": "kimura", "email": "kimura@example.com" }
  ],
  "meta": {
    "table": "users",
    "elapsed_ms": 12
  }
}

Error

config.json
{
  "dcl": "1.0",
  "status": "ERROR",
  "code": "TABLE_NOT_FOUND",
  "message": "Table 'users' does not exist"
}

Error codes

CodeDescription
TABLE_NOT_FOUNDSpecified table does not exist
COLUMN_NOT_FOUNDSpecified column does not exist
INVALID_ACTIONUnknown action specified
INVALID_WHEREWHERE condition could not be parsed
PERMISSION_DENIEDTenant does not have access
CONNECTION_ERRORDatabase connection failed

Integration

DCL works over two protocols. The DCL command itself is identical in both cases.

ProtocolUsed byGuide
REST API (HTTPS POST)Frontend, Backend, any HTTP clientSee README.api.md
MCP (JSON-RPC 2.0 / SSE)AI agents (Claude, GPT, Cursor)See README.mcp.md

DCL payload (identical in both protocols)

config.json
{
  "dcl": "1.0",
  "action": "SELECT",
  "table": "orders",
  "where": [
    "status = 'pending'",
    "created_at >= '2026-01-01'"
  ],
  "order": "created_at DESC",
  "limit": 100
}

This DCL JSON is the same regardless of whether you call via REST API or MCP. Only the outer protocol layer differs.


Supported Databases

DatabaseStatus
MySQL 5.x / 8.xβœ… Supported
PostgreSQL 9–18βœ… Supported
OthersπŸ“‹ Planned

DCL normalizes differences between MySQL and PostgreSQL. You write one DCL command. DataClawe handles the rest.


Complexity Layers

DCL is designed in two layers. You choose the layer you need.


DCL Standard β€” this specification

For AI agents, frontend engineers, and anyone doing straightforward data operations.

  • No JOIN. No subquery.
  • Readable by anyone who knows MySQL basics.
  • Covers the vast majority of real-world CRUD needs.

If Standard covers your needs, you never have to go further.


DCL Advanced β€” coming in v1.1

For backend engineers who need more expressive power.

Same JSON structure. Same DataClawe engine. More capability when you need it.

JOIN

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Databases View all alternatives
  • MCP Toolbox for Databases logoMCP Toolbox for Databases

    MCP Toolbox for Databases enables your agent to connect to your database.

    πŸ—„οΈ Databases1 views
    Compare vs MCP Toolbox for Databases β†’
  • Pg Aiguide logoPg Aiguide

    Comprehensive PostgreSQL documentation and best practices, including ecosystem tools

    πŸ—„οΈ Databases0 views
    Compare vs Pg Aiguide β†’
  • Genai Toolbox logoGenai Toolbox

    Open source MCP server specializing in easy, fast, and secure tools for Databases.

    πŸ—„οΈ Databases5 views
    Compare vs Genai Toolbox β†’
  • Vidlens MCP logoVidlens MCP

    YouTube as a queryable database for AI agents. 41 tools, zero config.

    πŸ—„οΈ Databases0 views
    Compare vs Vidlens MCP β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about DataClawe β€” Database as a Utility

We don't have a confirmed install command for DataClawe β€” Database as a Utility yet, so we don't publish a generated one β€” a guessed package name would point at the wrong package or none at all. Follow the project's own README or setup instructions (https://github.com/DataClawe/dcl-spec) for the current steps.

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDataClawe β€” Database as a Utility AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/dataclawe-database-as-a-utility?style=directory)](https://allmcps.com/mcp/dataclawe-database-as-a-utility)
HTML Embed
<a href="https://allmcps.com/mcp/dataclawe-database-as-a-utility"><img src="https://allmcps.com/api/badge/dataclawe-database-as-a-utility?style=directory" alt="DataClawe β€” Database as a Utility on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ—„οΈDatabases
More technical detailsExpand β–Ύ
Last updatedMar 30, 2026
10/10 checks healthy over the last 42d
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit5mo ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Mar 30, 2026
29Quality signal: Emerging Β· 29/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ—„οΈ Databases β†’Best MCP servers for Databases β†’Best PostgreSQL MCP servers β†’Best MySQL MCP servers β†’Alternatives to DataClawe β€” Database as a Utility β†’Install in Claude DesktopInstall in CursorInstall in VS CodeSetup guides for all 13 MCP clients