Copy & Environment Tools in MCP
Copy & Environment Tools in MCP
- MCP gains
captain_copy_collectionandcaptain_change_environment: clone a collection, or move one between environments, from any MCP client. API keys are environment-scoped, so a moved collection leaves the old environment’s keys behind. See MCP Server.
Same day: Document Metadata Endpoints, Image Dimension Limits, Neighboring Chunks, Page-Level Retrieval
Document Metadata Endpoints
- Replace or merge a document’s metadata:
PUTandPATCHon/v3/collections/{collection_name}/documents/{document_id}/metadatawrite custom metadata after indexing, and the v3 documents list acceptsmetadata_filterto look documents up by that metadata.
Image Dimension Limits
- Image dimension limits: images index up to 200 megapixels, with or without
mask_pii; an oversized image fails as a per-file error on the job record without blocking the batch. See File Size Limits.
Neighboring Chunks
- Read past a cut-off chunk without a second query: set
include.neighboring_chunks: trueon v3 Query and each result carries the chunk immediately before and after it in the source file, underneighboring_chunks.prevandneighboring_chunks.next.previsnullfor the first chunk in a document,nextisnullfor the last. See Advanced Search & Relations. - Off by default: the base query response is unchanged unless
include.neighboring_chunksis set.
Page-Level Retrieval
Page-Level Retrieval
- Fetch one page of a document:
GET /v3/collections/{collection_name}/documents/{document_id}/pages/{page_number}returns the chunks, text, and regions of a single page, next to Get Document in the v3 reference.