Needle MCP Server

Official

needle_list_files

List all documents stored within a specific Needle collection with their current status. Returns detailed information about each file including: - File ID and name - Processing status (pending, processing, complete, error) - Upload date and metadata Use this tool when you need to: - Inventory available documents - Check processing status of uploads - Get file IDs for reference - Verify document availability before searching Essential for monitoring document processing completion before performing searches.

Input Schema

NameRequiredDescriptionDefault
collection_idYesThe unique collection identifier to list files from

Input Schema (JSON Schema)

{ "properties": { "collection_id": { "description": "The unique collection identifier to list files from", "type": "string" } }, "required": [ "collection_id" ], "type": "object" }