data-api-builder vs airtable-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
data-api-builder by Azure | airtable-mcp-server by domdomegg | |
|---|---|---|
| Stars | ★ 1,410 | ★ 444 |
| 30d uses | — | — |
| Score | 53 | 53 |
| Official | — | — |
| Categories | DatabaseDeveloper ToolsCloud Storage | DatabaseProductivityDeveloper Tools |
| Language | C# | TypeScript |
| Last commit | this month | this month |
data-api-builder · Summary
Azure's Data API Builder provides REST and GraphQL endpoints for Azure databases with upcoming MCP tools support.
airtable-mcp-server · Summary
A comprehensive MCP server enabling AI systems to interact with Airtable databases through read and write operations.
data-api-builder · Use cases
- Create REST and GraphQL APIs for Azure databases
- Build secure data access layers for applications
- Generate API endpoints for on-premises databases in any cloud
airtable-mcp-server · Use cases
- Automating data entry and updates in Airtable through AI assistants
- Building intelligent data pipelines that connect Airtable with other systems
- Enabling AI-powered analysis and reporting on Airtable datasets
data-api-builder · Install
- Install .NET 8 or later runtime: https://get.dot.net
- Install the DAB command line tool:
``sh dotnet tool install microsoft.dataapibuilder -g ``
- Initialize and configure DAB with:
``sh dab init --database-type mssql --connection-string "@env('my-connection-string')" --host-mode development ``
- Add your database entities and start the server:
``sh dab add Todo --source "dbo.Todo" --permissions "anonymous:*" dab start ``
airtable-mcp-server · Install
Installation
**Step 1**: [Create an Airtable personal access token](https://airtable.com/create/tokens/new)
- Name: e.g. 'Airtable MCP Server Token'
- Scopes:
schema.bases:read,data.records:read, and optionallyschema.bases:write,data.records:write
**Step 2**: Configure Claude Desktop by adding to claude_desktop_config.json:
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": [
"-y",
"airtable-mcp-server"
],
"env": {
"AIRTABLE_API_KEY": "pat123.abc123",
}
}
}
}Restart Claude Desktop after saving.