datadabble-mcp

datadabble-mcp

Enables Claude and other MCP clients to manage databases, fields, entries, visualizations, AI features, notifications, audit logs, and team accounts via natural language by wrapping the DataDabble REST API.

Category
访问服务器

README

DataDabble MCP Server

A Model Context Protocol (MCP) server that wraps the DataDabble REST API, enabling Claude and other MCP clients to manage databases, fields, entries, visualizations, AI features, notifications, audit logs, and team accounts via natural language.

The server communicates with DataDabble's REST API rather than accessing MongoDB directly, respecting auth, validation, and business logic in the app layer.

Quick Start

Prerequisites

  • Python 3.11+
  • A running DataDabble instance (default: http://localhost:5000)

Install

pip install -e .

Configure

Copy .env.example to .env and set your values:

DATADABBLE_BASE_URL=http://localhost:5000/api/v1
DATADABBLE_EMAIL=user@example.com
DATADABBLE_PASSWORD=password
DATADABBLE_AUTO_LOGIN=true

Run

# As a module
python -m datadabble_mcp

# Or via the entry point
datadabble-mcp

Claude Desktop Configuration

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "datadabble": {
      "command": "python",
      "args": ["-m", "datadabble_mcp"],
      "env": {
        "DATADABBLE_BASE_URL": "http://localhost:5000/api/v1",
        "DATADABBLE_EMAIL": "user@example.com",
        "DATADABBLE_PASSWORD": "password"
      }
    }
  }
}

Tools (42)

Auth (4)

Tool Description
auth_login Log in with email and password
auth_logout Log out and clear tokens
auth_whoami Get current user profile
auth_register Register a new account

Databases (5)

Tool Description
db_list List all databases
db_create Create a new database
db_get Get a database by slug
db_update Update title or description
db_delete Delete a database

Fields (7)

Tool Description
field_list List fields in a database
field_create Add a field (BOOL, INT, DEC, STR, DATE, EMAIL, URL, DICT, LIST)
field_get Get a field by ID
field_update Update a field (with optional data loss confirmation)
field_delete Delete a field
field_reorder Reorder fields
field_preview_type_change Preview impact of changing a field's type

Entries (6)

Tool Description
entry_list List entries with pagination and filtering
entry_create Create an entry
entry_get Get an entry by ID
entry_update Update an entry's values
entry_delete Delete an entry
entry_validate_filter Validate a filter expression

Visualizations (7)

Tool Description
viz_list List saved visualizations
viz_create Create a visualization (bar, line, pie, scatter)
viz_get Get a visualization by ID
viz_update Update a visualization
viz_delete Delete a visualization
viz_data Get computed data for a visualization
viz_adhoc_data Get visualization data without saving

AI (3)

Tool Description
ai_insights Get AI-generated insights about a database
ai_ask Ask a natural language question about data
ai_suggest_query Get a suggested filter from a description

Notifications (7)

Tool Description
notification_list List notifications
notification_unread_count Get unread count
notification_mark_read Mark one as read
notification_mark_all_read Mark all as read
notification_delete Delete a notification
notification_prefs_get Get notification preferences
notification_prefs_update Update notification preferences

Audit Logs (6)

Tool Description
audit_list List audit logs for a database
audit_stats Get audit statistics for a database
audit_account_list List account-level audit logs
audit_account_stats Get account-level audit statistics
audit_account_users List users in audit logs
audit_export Export audit logs as CSV

Accounts & Teams (7)

Tool Description
account_get Get current account details
account_list List all accounts
account_switch Switch account context
account_members List team members
account_invite Invite a user by email
account_update_member Update a member's role/permissions
account_remove_member Remove a team member

Resources

URI Description
datadabble://field-types Field type reference
datadabble://filter-syntax Filter expression language reference
datadabble://databases List all databases (live)
datadabble://databases/{slug} Database schema with fields and entry count
datadabble://databases/{slug}/sample First 10 entries for context

Prompts

Name Description
create-database Create a database and add fields from a spec
analyze-database Fetch schema, sample data, and AI insights
query-builder Build a filter expression from natural language
bulk-create-entries Create multiple entries from a JSON array

Development

# Install with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Lint
ruff check src/ tests/

Architecture

src/datadabble_mcp/
├── server.py          # FastMCP server, lifespan, entry point
├── config.py          # Environment variable configuration
├── auth.py            # JWT auth manager (login, refresh, logout)
├── client.py          # httpx client with auth injection + auto-refresh
├── resources.py       # MCP resources (field types, filter syntax, schemas)
├── prompts.py         # MCP prompts (workflow templates)
└── tools/
    ├── auth_tools.py
    ├── database_tools.py
    ├── field_tools.py
    ├── entry_tools.py
    ├── viz_tools.py
    ├── ai_tools.py
    ├── notification_tools.py
    ├── audit_tools.py
    └── account_tools.py

The server uses stdio transport and auto-logs in on startup when credentials are configured. All API errors are returned as structured dicts (never raised as exceptions), so MCP clients always get a useful response.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选