Unstructured API MCP Server

Official

update_neo4j_destination

Update an neo4j destination connector.

Args: destination_id: ID of the destination connector to update database: The neo4j database, e.g. "neo4j" uri: The neo4j URI, e.g. neo4j+s://<neo4j_instance_id>.databases.neo4j.io username: The neo4j username Returns: String containing the updated destination connector information

Input Schema

NameRequiredDescriptionDefault
batch_sizeNo
databaseNo
destination_idYes
uriNo
usernameNo

Input Schema (JSON Schema)

{ "properties": { "batch_size": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Batch Size" }, "database": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Database" }, "destination_id": { "title": "Destination Id", "type": "string" }, "uri": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Uri" }, "username": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Username" } }, "required": [ "destination_id" ], "title": "update_neo4j_destinationArguments", "type": "object" }