create_text_index
Enables keyword search by creating a full-text index on a node label and its string property. Existing and new nodes are indexed.
Instructions
Create a full-text search index on a string property.
Call this once before using search_text on the same label + property pair. Existing nodes with the given label and property are indexed immediately; future nodes are indexed on insertion.
Use this tool when: you want to enable keyword search on a text property. Do NOT use for: vector/embedding search (use create_vector_index).
Args: label: Node label to index (e.g. "Article"). property: String property to index (e.g. "title", "content").
Returns: Confirmation string on success, or an error message.
Examples: create_text_index("Article", "title") create_text_index("Document", "content")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| label | Yes | ||
| property | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |