Unstructured API MCP Server

Official

create_neo4j_destination

Create an neo4j destination connector.

Args: name: A unique name for this connector 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 created destination connector information

Input Schema

NameRequiredDescriptionDefault
batch_sizeNo
databaseYes
nameYes
uriYes
usernameYes

Input Schema (JSON Schema)

{ "properties": { "batch_size": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 100, "title": "Batch Size" }, "database": { "title": "Database", "type": "string" }, "name": { "title": "Name", "type": "string" }, "uri": { "title": "Uri", "type": "string" }, "username": { "title": "Username", "type": "string" } }, "required": [ "name", "database", "uri", "username" ], "title": "create_neo4j_destinationArguments", "type": "object" }