Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Qdrant
target

Qdrant MCP Server

MCP server for Qdrant vector database

qdrantvector-databaseembeddingssemantic-search

About

## Qdrant MCP Server: Open Source Vector Database The **Qdrant MCP Server** integrates the high-performance Qdrant vector database into Google Antigravity. This open-source solution offers advanced filtering, payload storage, and blazing-fast similarity search for production AI applications. ### Why Qdrant MCP? Qdrant combines performance with flexibility: - **Open Source**: Self-host or use cloud - **Rich Filtering**: Complex payload queries - **Quantization**: Reduce memory usage 4x - **Multivector**: Multiple vectors per point - **HNSW Index**: Fast approximate search ### Key Features #### 1. Collection Management ```python from qdrant_client import QdrantClient from qdrant_client.models import Distance, VectorParams client = QdrantClient(url="http://localhost:6333") # Create collection client.create_collection( collection_name="documents", vectors_config=VectorParams(size=768, distance=Distance.COSINE) ) ``` #### 2. Upsert and Search ```python from qdrant_client.models import PointStruct # Add points with payload client.upsert( collection_name="documents", points=[ PointStruct( id=1, vector=embedding1, payload={"title": "ML Guide", "category": "tech", "date": "2024-01-15"} ) ] ) # Search with filters results = client.search( collection_name="documents", query_vector=query_embedding, query_filter=Filter( must=[FieldCondition(key="category", match=MatchValue(value="tech"))] ), limit=10 ) ``` #### 3. Advanced Filtering ```python from qdrant_client.models import Filter, FieldCondition, Range # Complex filter queries results = client.search( collection_name="documents", query_vector=query_embedding, query_filter=Filter( must=[ FieldCondition(key="category", match=MatchValue(value="tech")), FieldCondition(key="date", range=Range(gte="2024-01-01")) ] ), limit=10 ) ``` ### Configuration ```json { "mcpServers": { "qdrant": { "command": "npx", "args": ["-y", "@anthropic/mcp-qdrant"], "env": { "QDRANT_URL": "http://localhost:6333", "QDRANT_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Filtered Search**: Combine semantic similarity with rich metadata filtering. **Recommendation Systems**: Build personalized recommendations with payload context. **Multi-Tenant RAG**: Isolate data with collection-level or payload-based separation. The Qdrant MCP Server brings flexible vector search to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "qdrant": {
      "mcpServers": {
        "qdrant": {
          "env": {
            "QDRANT_URL": "http://localhost:6333",
            "QDRANT_API_KEY": "YOUR_QDRANT_API_KEY"
          },
          "args": [
            "qdrant-mcp"
          ],
          "command": "uvx"
        }
      }
    }
  }
}

How to Use

  1. 11. Set Qdrant server URL
  2. 22. API key optional for local instances
  3. 33. Supports vector similarity search

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers