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
OpenSearch MCP Server
search

OpenSearch MCP Server MCP Server

MCP server for OpenSearch with native support

opensearchsearchawsvector-search

About

## OpenSearch MCP Server: Search and Analytics Engine The **OpenSearch MCP Server** integrates OpenSearch into Google Antigravity, enabling full-text search, log analytics, and observability operations directly from your development environment. ### Why OpenSearch MCP? - **Open Source**: Apache 2.0 licensed Elasticsearch fork - **Full-Text Search**: Advanced text search capabilities - **Analytics**: Real-time log and metrics analysis - **Observability**: Traces, metrics, and logs in one place - **Scalable**: Distributed architecture for large datasets ### Key Features #### 1. Search Queries ```python # Full-text search result = await mcp.search( index="products", query={ "bool": { "must": [ {"match": {"name": "laptop gaming"}} ], "filter": [ {"range": {"price": {"lte": 2000}}}, {"term": {"in_stock": True}} ] } }, highlight={"fields": {"name": {}, "description": {}}}, size=20 ) for hit in result["hits"]["hits"]: print(f"Product: {hit['_source']['name']} - Score: {hit['_score']}") ``` #### 2. Document Operations ```python # Index document await mcp.index( index="products", id="prod_123", document={ "name": "Gaming Laptop", "description": "High-performance gaming laptop...", "price": 1499.99, "category": "electronics", "in_stock": True } ) # Bulk index await mcp.bulk([ {"index": {"_index": "products", "_id": "1"}}, {"name": "Product 1", "price": 99.99}, {"index": {"_index": "products", "_id": "2"}}, {"name": "Product 2", "price": 149.99} ]) # Delete document await mcp.delete(index="products", id="prod_123") ``` #### 3. Aggregations ```python # Analytics aggregation result = await mcp.search( index="logs", query={"range": {"timestamp": {"gte": "now-1h"}}}, aggs={ "status_codes": {"terms": {"field": "status_code"}}, "avg_response_time": {"avg": {"field": "response_time"}}, "requests_over_time": { "date_histogram": {"field": "timestamp", "interval": "5m"} } }, size=0 ) print(f"Total requests: {result['hits']['total']['value']}") ``` #### 4. Index Management ```python # Create index with mappings await mcp.create_index( index="logs", body={ "mappings": { "properties": { "message": {"type": "text"}, "level": {"type": "keyword"}, "timestamp": {"type": "date"} } } } ) # Get index info info = await mcp.get_index(index="products") ``` ### Configuration ```json { "mcpServers": { "opensearch": { "command": "npx", "args": ["-y", "@anthropic/mcp-opensearch"], "env": { "OPENSEARCH_URL": "https://localhost:9200", "OPENSEARCH_USERNAME": "admin", "OPENSEARCH_PASSWORD": "your-password" } } } } ``` ### Use Cases **Product Search**: Full-text product search with facets. **Log Analytics**: Centralized log analysis and alerting. **Observability**: Application performance monitoring. **Security Analytics**: SIEM and threat detection. The OpenSearch MCP enables search and analytics within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "opensearch": {
      "mcpServers": {
        "opensearch": {
          "env": {
            "OPENSEARCH_URL": "https://localhost:9200",
            "OPENSEARCH_PASSWORD": "YOUR_PASSWORD",
            "OPENSEARCH_USERNAME": "admin"
          },
          "args": [
            "-y",
            "opensearch-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Native MCP support in OpenSearch 3.0+
  2. 2Configure cluster URL and credentials
  3. 3GPU-accelerated vector search available

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