MCP Catalogs
Home

airtable-mcp-server vs mcp-server-qdrant

Side-by-side comparison to help you pick between these two MCP servers.

airtable-mcp-server
by domdomegg
mcp-server-qdrant
by qdrant
Stars★ 444★ 1,397
30d uses
Score5355
Official
Categories
DatabaseProductivityDeveloper Tools
DatabaseAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

airtable-mcp-server · Summary

A comprehensive MCP server enabling AI systems to interact with Airtable databases through read and write operations.

mcp-server-qdrant · Summary

Official Qdrant MCP server for semantic memory storage and retrieval using vector embeddings.

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

mcp-server-qdrant · Use cases

  • Building AI applications with long-term memory capabilities
  • Code search and retrieval for development environments
  • Enhancing LLM applications with vector-based semantic search

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 optionally schema.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.

mcp-server-qdrant · Install

Installation Options

Using uvx
QDRANT_URL="http://localhost:6333" \
COLLECTION_NAME="my-collection" \
EMBEDDING_MODEL="sentence-transformers/all-MiniLM-L6-v2" \
uvx mcp-server-qdrant
Using Docker
docker build -t mcp-server-qdrant .
docker run -p 8000:8000 \
  -e FASTMCP_SERVER_HOST="0.0.0.0" \
  -e QDRANT_URL="http://your-qdrant-server:6333" \
  -e QDRANT_API_KEY="your-api-key" \
  -e COLLECTION_NAME="your-collection" \
  mcp-server-qdrant
Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "qdrant": {
    "command": "uvx",
    "args": ["mcp-server-qdrant"],
    "env": {
      "QDRANT_URL": "https://xyz-example.eu-central.aws.cloud.qdrant.io:6333",
      "QDRANT_API_KEY": "your_api_key",
      "COLLECTION_NAME": "your-collection-name",
      "EMBEDDING_MODEL": "sentence-transformers/all-MiniLM-L6-v2"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.