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.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • 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 BuildlistAllMCPs 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 Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ—„οΈ Databases
  3. DataClawe β€” Database as a Utility
D
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:22:37 PM

DataClawe β€” Database as a Utility

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 Repository

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.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "dataclawe-database-as-a-utility": {
      "command": "npx",
      "args": [
        "-y",
        "dataclawe-database-as-a-utility"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

config.json
{
  "dcl": "1.0",
  "action": "SELECT",
  "table": "users",
  "columns": ["users.id", "users.name", "orders.amount"],
  "join": [
    {
      "table": "orders",
      "on": "users.id = orders.user_id",
      "type": "LEFT"
    }
  ],
  "where": [
    "users.status = 'active'"
  ],
  "order": "orders.amount DESC",
  "limit": 20
}

Subquery

config.json
{
  "dcl": "1.0",
  "action": "SELECT",
  "table": "users",
  "where": [
    "id IN (SELECT user_id FROM orders WHERE status = 'paid')"
  ]
}

Multiple JOINs

config.json
{
  "dcl": "1.0",
  "action": "SELECT",
  "table": "orders",
  "columns": [
    "orders.id",
    "users.name AS customer",
    "products.name AS product",
    "orders.amount"
  ],
  "join": [
    {
      "table": "users",
      "on": "orders.user_id = users.id",
      "type": "INNER"
    },
    {
      "table": "products",
      "on": "orders.product_id = products.id",
      "type": "LEFT"
    }
  ],
  "where": [
    "orders.status = 'paid'",
    "orders.created_at >= '2026-01-01'"
  ],
  "order": "orders.created_at DESC"
}

JOIN types supported in Advanced

TypeDescription
INNERRecords matching in both tables
LEFTAll left, matching right
RIGHTAll right, matching left

Why two layers?

Code
SQL solved everything in one spec.
That is why SQL is still hard after 30 years.

DCL Standard is for everyone.
DCL Advanced is for when you need more.
You always start simple. You go deeper only when you must.

The same engine handles both. The same JSON structure. No new syntax to learn when you move from Standard to Advanced β€” just new keys.


What remains intentionally unsupported

The following are out of scope in both Standard and Advanced, to keep DCL safe and predictable for AI agents:

  • Stored procedures
  • Schema creation or ALTER TABLE
  • Raw SQL passthrough
  • Physical schema destruction (immediate DROP TABLE equivalent)

Note: TABLE_DROP in DCL is a logical delete β€” distinct from SQL DROP TABLE. It does not immediately destroy data.

DCL is a data operation language, not a schema management language.


Versioning

The "dcl": "1.0" field is required in every request and response.

Future versions will remain backward compatible. A DCL 1.0 request will always work against a DCL 2.0 server.


Contributing

DCL is an open specification. Feedback, proposals, and pull requests are welcome.

  • Open an issue to propose a new action or operator
  • Open a pull request to improve documentation or examples
  • All contributions must follow the design philosophy: readable, MySQL-familiar, BASIC-level simplicity

Roadmap

v1.0 β€” DCL Standard

  • Spec finalization
  • JSON Schema for validation (dcl.schema.json)
  • Reference implementation in Go (DataClawe Engine)
  • MCP server reference implementation
  • MySQL wire protocol support
  • Multi-tenant isolation specification

v1.1 β€” DCL Advanced

  • JOIN specification (INNER / LEFT / RIGHT)
  • Subquery support
  • Nested aggregation

SDKs

  • JavaScript / TypeScript
  • PHP
  • Python
  • Go

Pricing

DataClawe uses a tiered pricing model that scales from individual developers to enterprise.

Initial registration fee: $20 (one-time, all plans)

PlanMonthlyRecordsSessionsSLA
Free$02,000100/dayNo
Personal$20up to 20,000up to 20,000/monthNo
Business$20+UnlimitedUnlimitedNo
EnterpriseContact usUnlimitedUnlimitedYes

Usage rates (Business plan β€” overage)

ItemUnit price
Record storage$0.001 / record / month
Session$0.001 / session

Record size limit: 100KB per record. This covers IoT sensor data, CRM contacts, medical text records, WordPress posts, and financial transactions. Images and video files are out of scope β€” store them in CDN/object storage and keep the URL in DataClawe.

For Enterprise pricing, contact us at dataclawe.com/enterprise.


Background

DCL is developed as part of the DataClawe project.

DataClawe is a database translation engine that connects legacy MySQL and PostgreSQL systems to AI agents, LLM pipelines, and cloud-native services β€” without rewriting the original system.

DCL is the command language that makes this connection possible for everyone, not just database engineers.

Legacy systems should not be destroyed. They should be translated.


License

DCL specification is released under Creative Commons Attribution 4.0 International (CC BY 4.0).

You are free to implement, extend, and build upon this specification. Attribution to DataClawe is appreciated.


DCL v1.1 β€” 2026 β€” DataClawe Project

Related MCP Servers

View all in Databases View all alternatives
  • AllMCPs Server logoAllMCPs Server
    β˜… Featured

    The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

    πŸ—„οΈ Databases7 views
    Compare vs AllMCPs Server β†’
  • Genai Toolbox logoGenai Toolbox

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

    πŸ—„οΈ Databases3 views
    Compare vs Genai Toolbox β†’
  • Mcp Mysql Server logoMcp Mysql Server

    Node.js-based MySQL database integration that provides secure MySQL database operations

    πŸ—„οΈ Databases2 views
    Compare vs Mcp Mysql Server β†’
  • Mcp Server Duckdb logoMcp Server Duckdb

    DuckDB database integration with schema inspection and query capabilities

    πŸ—„οΈ Databases2 views
    Compare vs Mcp Server Duckdb β†’

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

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "dataclawe-database-as-a-utility": { "command": "npx", "args": ["-y", "DataClawe β€” Database as a Utility"] } }

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 β–Ύ
TransportSTDIO
RuntimeNode.js
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.
27Quality signal: Emerging Β· 27/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 ownership8/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.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it 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 β†’Alternatives to DataClawe β€” Database as a Utility β†’Install in Claude DesktopInstall in CursorInstall in VS Code