update_neo4j_destination
Modify a Neo4j destination connector in the Unstructured API MCP Server by specifying the destination ID, database, URI, and username for updated configurations.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
batch_size | No | ||
database | No | ||
destination_id | Yes | ||
uri | No | ||
username | No |
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"
}