search_system_json
Search and retrieve relevant system JSON files by querying the Advanced Reasoning MCP Server, providing matches with relevance scores for enhanced analysis and decision-making.
Instructions
Search through system JSON files by query.
Parameters:
query: Search query to find matching system JSON files (required)
Returns matching files with relevance scores.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query to find matching system JSON files |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Search query to find matching system JSON files",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}