Back to Search

neonia_aero_surreal_rag_query

v0.1.0

AeroCraft AI: Vector similarity & hardware graph RAG query. Interrogates SurrealDB for ArduPilot documentation and hardware component nodes.

$0.010 / call (Standard Tier)
Updated: Unknown

Overview

Vector RAG search tool for ArduPilot documentation, parameters, and UAV hardware component graph matches.

Example Input

JSON payload sent to this tool:

{
  "query_text": "ArduPlane elevon mixing configuration for flying wing",
  "target_table": "ardupilot_docs",
  "min_similarity_score": 0.75,
  "limit": 5
}

Example Output

Formatted JSON response returned by this tool:

{
  "matches": [
    {
      "id": "ardupilot_docs:elevon_config",
      "title": "Flying Wing Elevon Configuration (MIXINGGAIN)",
      "parameter_name": "MIXINGGAIN",
      "default_value": "0.5",
      "similarity_score": 0.892,
      "snippet": "For elevon control on flying wings, set SERVO1_FUNCTION=77 (ElevonLeft) and SERVO2_FUNCTION=78 (ElevonRight)..."
    }
  ],
  "total_found": 1,
  "warnings": []
}

Setup Configuration

Add the following configuration to your MCP general settings or mcp_config.json:

{
  "mcpServers": {
    "neonia": {
      "serverUrl": "https://mcp.neonia.io/mcp?tools=neonia_aero_surreal_rag_query",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}