Needle MCP Server

Official

needle_create_collection

Create a new document collection in Needle for organizing and searching documents. A collection acts as a container for related documents and enables semantic search across its contents. Use this tool when you need to: - Start a new document organization - Group related documents together - Set up a searchable document repository Returns a collection ID that's required for subsequent operations. Choose a descriptive name that reflects the collection's purpose for better organization.

Input Schema

NameRequiredDescriptionDefault
nameYesA clear, descriptive name for the collection that reflects its purpose and contents

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "A clear, descriptive name for the collection that reflects its purpose and contents", "type": "string" } }, "required": [ "name" ], "type": "object" }