Needle MCP Server

Official

needle_get_collection_stats

Retrieve detailed statistical information about a Needle collection's contents and status. Provides metrics including: - Total number of documents - Processing status of documents - Storage usage and limits - Index status and health Use this tool to: - Monitor collection size and growth - Verify processing completion - Check collection health before operations Essential for ensuring collection readiness before performing searches.

Input Schema

NameRequiredDescriptionDefault
collection_idYesThe unique collection identifier to get statistics for

Input Schema (JSON Schema)

{ "properties": { "collection_id": { "description": "The unique collection identifier to get statistics for", "type": "string" } }, "required": [ "collection_id" ], "type": "object" }