Pinecone Developer MCP

Official

upsert-records

Insert or update records in a Pinecone index by specifying the index name, namespace, and record data. Ensures consistent schema for accurate data management.

Instructions

Insert or update records in a Pinecone index

Input Schema

NameRequiredDescriptionDefault
nameYesThe index to upsert into.
namespaceYesThe namespace to upsert into.
recordsYesA set of records to upsert into the index. Use a consistent schema for all records in the index.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "The index to upsert into.", "type": "string" }, "namespace": { "description": "The namespace to upsert into.", "type": "string" }, "records": { "description": "A set of records to upsert into the index. Use a consistent schema for all\n records in the index.", "items": { "additionalProperties": { "description": "A field value. Must be a string, number, boolean, or array of strings.\n Nested objects are not permitted." }, "description": "A record to upsert. Must have an \"id\" or \"_id\" field and contain text in\n the field specified by the index's \"fieldMap\".", "type": "object" }, "type": "array" } }, "required": [ "name", "namespace", "records" ], "type": "object" }

You must be authenticated.

Other Tools from Pinecone Developer MCP

Related Tools

ID: 7lxm56a88w