Databar MCP Server
OfficialClick 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., "@Databar MCP ServerGet me David Abaev's LinkedIn profile"
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.
Databar MCP Server
A Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with Databar.ai's data enrichment API. Discover, configure, and run data enrichments across hundreds of data providers using natural language.
Features
Smart Enrichment Discovery — Search and filter enrichments by keyword or category
Natural Language Interface — Ask "get David's LinkedIn profile" and the right enrichment runs automatically
Bulk Operations — Enrich many records in a single call with bulk enrichment and bulk waterfall support
Table Management — Create tables, manage columns, insert/update/upsert rows
Waterfall Support — Try multiple data providers sequentially until one succeeds
Async Handling — Automatic polling for results with no manual intervention
Intelligent Caching — 24-hour result cache reduces API calls and costs
Error Handling — Retries with exponential backoff and clear error messages
Quick Start
Prerequisites
Node.js 18+
A Databar.ai API key (get one here)
Install & Build
git clone https://github.com/databar-ai/databar-mcp-server.git
cd databar-mcp-server
npm install
npm run buildConfigure Claude Desktop
Edit your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"databar": {
"command": "node",
"args": ["/absolute/path/to/databar-mcp-server/dist/index.js"],
"env": {
"DATABAR_API_KEY": "your-api-key-here"
}
}
}
}Restart Claude Desktop. Verify by asking: "What Databar tools do you have access to?"
Usage Examples
Find someone's LinkedIn profile
"Get me David Abaev's LinkedIn profile"
Claude searches for LinkedIn enrichments, picks the right one, runs it, and returns the profile data.
Verify an email address
"Verify the email david@databar.ai"
Find an email using waterfall
"Find the email for John Smith at Google"
Runs a waterfall that tries multiple providers until one returns a result.
Bulk enrich a list
"Enrich these 10 emails with company data: [list]"
Uses bulk enrichment to process all records in a single API call.
Manage table data
"List my tables"
"Create 5 rows in table abc-123 with columns name and email"
"Get the columns for table abc-123"
Available Tools
Enrichments
Tool | Description |
| Search enrichments by keyword or category |
| Get parameters, pricing, and response fields for an enrichment |
| Run a single enrichment (with auto-polling and caching) |
| Run an enrichment on multiple inputs at once |
Waterfalls
Tool | Description |
| Search available waterfall enrichments |
| Run a waterfall (tries providers sequentially) |
| Run a waterfall on multiple inputs at once |
Tables
Tool | Description |
| Create a new empty table |
| List all tables in your workspace |
| Get column schema for a table |
| Get rows with pagination |
| List enrichments configured on a table |
| Add an enrichment to a table with column mapping |
| Trigger an enrichment on all rows in a table |
Row Operations
Tool | Description |
| Insert up to 50 rows with deduplication options |
| Update fields on existing rows by ID |
| Insert or update rows based on a matching key |
Account
Tool | Description |
| Get credit balance and account info |
Configuration
All settings are configurable via environment variables:
Variable | Default | Description |
| (required) | Your Databar API key |
|
| API base URL |
|
| Result cache TTL in hours |
|
| Max polling attempts for async tasks |
|
| Polling interval in ms |
How It Works
Async Task Handling
Server sends a run request to the Databar API
API returns a
task_idServer automatically polls
/v1/tasks/{task_id}every 2 secondsWhen status is
completed, results are returnedIf data has expired (1-hour retention),
gonestatus is handled gracefully
Caching
Results are cached for 24 hours by default
Cache key: enrichment ID + serialized params
Cached results don't consume credits
Use
skip_cache: trueto force fresh data
Smart Categorization
Enrichments are automatically categorized (People, Company, Email, Phone, Social, Financial, Verification) to help the AI assistant pick the right tool.
Development
npm run dev # Run with tsx (hot reload)
npm run build # Compile TypeScript
npm start # Run compiled outputProject Structure
databar-mcp-server/
├── src/
│ ├── index.ts # MCP server entry point & tool handlers
│ ├── databar-client.ts # Databar API client with polling
│ ├── cache.ts # In-memory cache with TTL
│ ├── types.ts # TypeScript type definitions
│ └── utils.ts # Helpers & categorization
├── dist/ # Compiled output (generated)
├── package.json
├── tsconfig.json
└── .gitignoreTroubleshooting
Problem | Solution |
Server not connecting | Verify API key, rebuild ( |
"No enrichments found" | Try a broader search query; list cache refreshes every 5 minutes |
"Task timed out" | Some enrichments take longer; increase |
"Task data has expired" | Data is stored for 1 hour only; re-run the enrichment |
"Invalid API key" | Check |
Resources
License
MIT
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
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/databar-ai/databar-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server