localnest_embed_status
Check embedding backend status and verify vector-search readiness for local AI agents.
Instructions
Return active embedding backend/model status and vector-search readiness.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | json |
Implementation Reference
- src/mcp/tools/retrieval.js:156-173 (handler)The implementation of the `localnest_embed_status` tool, which fetches the vector index status and normalizes it using `normalizeEmbedStatus`.
registerJsonTool( 'localnest_embed_status', { title: 'Embedding Status', description: 'Return active embedding backend/model status and vector-search readiness.', inputSchema: {}, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false } }, async () => { const status = vectorIndex.getStatus(); return normalizeEmbedStatus(status); } );