airtable-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
airtable-mcp-server by domdomegg | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 444 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | DatabaseProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
airtable-mcp-server · Summary
A comprehensive MCP server enabling AI systems to interact with Airtable databases through read and write operations.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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.
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything