Needle MCP Server

Official

needle_get_collection_details

Fetch comprehensive metadata about a specific Needle collection. Provides detailed information about the collection's configuration, creation date, and current status. Use this tool when you need to: - Verify a collection's existence and configuration - Check collection metadata before operations - Get creation date and other attributes Requires a valid collection ID and returns detailed collection metadata. Will error if collection doesn't exist.

Input Schema

NameRequiredDescriptionDefault
collection_idYesThe unique collection identifier returned from needle_create_collection or needle_list_collections

Input Schema (JSON Schema)

{ "properties": { "collection_id": { "description": "The unique collection identifier returned from needle_create_collection or needle_list_collections", "type": "string" } }, "required": [ "collection_id" ], "type": "object" }