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 FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 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
Vespa MCP
🔎

Vespa MCP MCP Server

Big data serving engine for search, recommendation, and AI.

vespasearchmlbig-data

About

## Vespa MCP Server: Big Data Serving Engine The **Vespa MCP Server** integrates Yahoo's Vespa search engine into Google Antigravity. This powerful platform combines search, recommendation, and AI serving at any scale, handling billions of documents with millisecond latency. ### Why Vespa MCP? Vespa excels at large-scale AI serving: - **Hybrid Search**: Vector + keyword in one query - **Real-Time**: Update and query simultaneously - **ML Serving**: Deploy models alongside data - **Massive Scale**: Billions of documents, low latency - **Open Source**: Battle-tested by Yahoo/Verizon ### Key Features #### 1. Hybrid Search ```python from vespa.application import Vespa app = Vespa(url="http://localhost:8080") # Hybrid query combining vector and text search response = app.query( yql="select * from sources * where userQuery()", query="machine learning best practices", ranking="hybrid", body={ "input.query(embedding)": query_embedding, "ranking.features.query(keywords)": "machine learning" } ) for hit in response.hits: print(f"{hit['relevance']}: {hit['fields']['title']}") ``` #### 2. Real-Time Updates ```python # Feed documents in real-time app.feed_data_point( schema="articles", data_id="doc-123", fields={ "title": "Understanding Vector Search", "content": "Vector search enables semantic...", "embedding": document_embedding, "timestamp": datetime.now().isoformat() } ) # Immediately queryable response = app.query( yql="select * from articles where timestamp > @recent", recent=one_hour_ago ) ``` #### 3. ML Model Serving ```yaml # services.xml - Deploy models alongside data schema article { document article { field title type string { } field embedding type tensor<float>(d0[768]) { } } rank-profile semantic { inputs { query(embedding) tensor<float>(d0[768]) } first-phase { expression: closeness(field, embedding) } } } ``` ### Configuration ```json { "mcpServers": { "vespa": { "command": "npx", "args": ["-y", "@anthropic/mcp-vespa"], "env": { "VESPA_URL": "http://localhost:8080", "VESPA_CERT": "/path/to/cert.pem" } } } } ``` ### Use Cases **Enterprise Search**: Build search over billions of documents with hybrid ranking. **Recommendations**: Serve personalized recommendations with real-time updates. **RAG at Scale**: Production-grade retrieval for large-scale RAG applications. The Vespa MCP Server enables enterprise-scale search and AI serving in Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "vespa": {}
  }
}

How to Use

    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