wren-engine vs airtable-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
wren-engine by Canner | airtable-mcp-server by domdomegg | |
|---|---|---|
| Stars | ★ 661 | ★ 444 |
| 30d uses | — | — |
| Score | 53 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDatabaseDeveloper Tools | DatabaseProductivityDeveloper Tools |
| Language | Java | TypeScript |
| Last commit | this month | this month |
wren-engine · Summary
An open context engine for AI agents that provides business context and semantic layer over data sources.
airtable-mcp-server · Summary
A comprehensive MCP server enabling AI systems to interact with Airtable databases through read and write operations.
wren-engine · Use cases
- Natural-language analytics with trusted business definitions
- AI copilots that answer questions across governed enterprise data
- Code assistants that need real business context, not just schema dumps
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
wren-engine · Install
Installation
Through MCP
- Clone the repository:
git clone https://github.com/Canner/wren-engine - Navigate to the MCP server:
cd wren-engine/mcp-server - Follow the setup instructions in the README
Through AI Agents
- Follow the [Installation guide](https://docs.getwren.ai/oss/engine/get_started/installation)
- Set up quickstart with [jaffle_shop example](https://docs.getwren.ai/oss/engine/get_started/quickstart)
Claude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"wren": {
"command": "uv",
"args": ["run", "mcp-server", "serve"],
"env": {
"WREN_ENGINE_PATH": "/path/to/wren-engine"
}
}
}
}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.