localnest_index_status
Check the status and metadata of your local semantic index to monitor indexing progress and verify data availability for search operations.
Instructions
Return local semantic index status and metadata.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | json |
Implementation Reference
- src/mcp/tools/retrieval.js:140-154 (handler)The registration and handler definition for 'localnest_index_status'. It calls vectorIndex.getStatus() and processes the result through normalizeIndexStatus.
registerJsonTool( 'localnest_index_status', { title: 'Index Status', description: 'Return local semantic index status and metadata.', inputSchema: {}, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false } }, async () => normalizeIndexStatus(vectorIndex.getStatus()) );