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
Splunk
search

Splunk MCP Server

Official Splunk MCP server for log analysis

splunklogsobservabilitysiemsearch

About

## Splunk MCP Server: Security & Observability The **Splunk MCP Server** integrates Splunk's powerful data platform into Google Antigravity, enabling developers to search, analyze, and visualize machine data for security monitoring, operational intelligence, and application debugging. ### Why Splunk MCP? - **Universal Log Search**: Search across all log sources with SPL (Search Processing Language) - **Real-Time Monitoring**: Create alerts and dashboards for live operational data - **Security Analytics**: Detect threats with built-in security intelligence - **Custom Dashboards**: Build interactive visualizations for any data source - **Machine Learning**: Apply ML to identify anomalies and predict issues ### Key Features #### 1. Log Search and Analysis ```python # Execute Splunk search via MCP results = await splunk.search({ "query": "search sourcetype=application level=error | stats count by service", "earliest_time": "-24h", "latest_time": "now" }) # Get search results for row in results: print(f"Service: {row.service}, Errors: {row.count}") # Time-based analysis timechart = await splunk.search({ "query": "search sourcetype=web_logs | timechart span=1h count", "earliest_time": "-7d" }) ``` #### 2. Alerting and Dashboards ```python # Create saved search with alert await splunk.createSavedSearch({ "name": "High Error Rate Alert", "search": "search level=error | timechart span=5m count | where count > 100", "alert_type": "number of events", "alert_threshold": 1, "actions": ["email", "slack"], "cron_schedule": "*/5 * * * *" }) # Get dashboard data dashboard = await splunk.getDashboard("operations_overview") panels = await splunk.executeDashboardPanels(dashboard.id) ``` ### Configuration ```json { "mcpServers": { "splunk": { "command": "npx", "args": ["-y", "@anthropic/mcp-splunk"], "env": { "SPLUNK_HOST": "your-splunk-instance.com", "SPLUNK_PORT": "8089", "SPLUNK_USERNAME": "your-username", "SPLUNK_PASSWORD": "your-password" } } } } ``` ### Use Cases **Security Operations**: Monitor for security threats, investigate incidents, and maintain compliance with audit logs. **Application Debugging**: Trace requests across services and quickly identify root causes of issues. **Infrastructure Monitoring**: Aggregate and analyze logs from servers, containers, and cloud services. The Splunk MCP Server brings enterprise-grade log analytics into your development workflow.

Installation

Configuration
{
  "mcpServers": {
    "splunk": {
      "mcpServers": {
        "splunk": {
          "env": {
            "SPLUNK_HOST": "localhost",
            "SPLUNK_PORT": "8089",
            "SPLUNK_TOKEN": "YOUR_SPLUNK_TOKEN"
          },
          "args": [
            "-y",
            "@splunk/mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Set Splunk host, port, and auth token
  2. 22. Run SPL queries through AI
  3. 33. Safe queries with 1-minute timeout

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