datadabble-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@datadabble-mcpList all databases"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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=trueRun
# As a module
python -m datadabble_mcp
# Or via the entry point
datadabble-mcpRelated MCP server: Airtable MCP Pro
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 |
| Log in with email and password |
| Log out and clear tokens |
| Get current user profile |
| Register a new account |
Databases (5)
Tool | Description |
| List all databases |
| Create a new database |
| Get a database by slug |
| Update title or description |
| Delete a database |
Fields (7)
Tool | Description |
| List fields in a database |
| Add a field (BOOL, INT, DEC, STR, DATE, EMAIL, URL, DICT, LIST) |
| Get a field by ID |
| Update a field (with optional data loss confirmation) |
| Delete a field |
| Reorder fields |
| Preview impact of changing a field's type |
Entries (6)
Tool | Description |
| List entries with pagination and filtering |
| Create an entry |
| Get an entry by ID |
| Update an entry's values |
| Delete an entry |
| Validate a filter expression |
Visualizations (7)
Tool | Description |
| List saved visualizations |
| Create a visualization (bar, line, pie, scatter) |
| Get a visualization by ID |
| Update a visualization |
| Delete a visualization |
| Get computed data for a visualization |
| Get visualization data without saving |
AI (3)
Tool | Description |
| Get AI-generated insights about a database |
| Ask a natural language question about data |
| Get a suggested filter from a description |
Notifications (7)
Tool | Description |
| List notifications |
| Get unread count |
| Mark one as read |
| Mark all as read |
| Delete a notification |
| Get notification preferences |
| Update notification preferences |
Audit Logs (6)
Tool | Description |
| List audit logs for a database |
| Get audit statistics for a database |
| List account-level audit logs |
| Get account-level audit statistics |
| List users in audit logs |
| Export audit logs as CSV |
Accounts & Teams (7)
Tool | Description |
| Get current account details |
| List all accounts |
| Switch account context |
| List team members |
| Invite a user by email |
| Update a member's role/permissions |
| Remove a team member |
Resources
URI | Description |
| Field type reference |
| Filter expression language reference |
| List all databases (live) |
| Database schema with fields and entry count |
| First 10 entries for context |
Prompts
Name | Description |
| Create a database and add fields from a spec |
| Fetch schema, sample data, and AI insights |
| Build a filter expression from natural language |
| 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.pyThe 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adamklockars/datadabble-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server