search_documents
Query and retrieve documents from Elasticsearch clusters by specifying an index and search query using the MCP server for precise and scalable information retrieval.
Instructions
Search for documents.
Args:
index: Name of the index
body: Search query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"additionalProperties": true,
"title": "Body",
"type": "object"
},
"index": {
"title": "Index",
"type": "string"
}
},
"required": [
"index",
"body"
],
"type": "object"
}