create_neo4j_destination
Establish a Neo4j destination connector by specifying database details, URI, and credentials for integration with the Unstructured API MCP Server.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
batch_size | No | ||
database | Yes | ||
name | Yes | ||
uri | Yes | ||
username | Yes |
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"
}