# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- neo4jPassword
properties:
neo4jUri:
type: string
default: bolt://localhost:7687
description: The URI for the Neo4j database.
neo4jUsername:
type: string
default: neo4j
description: The username for the Neo4j database.
neo4jPassword:
type: string
default: ""
description: The password for the Neo4j database.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
config => ({command: 'node', args: ['build/index.js'], env: {NEO4J_URI: config.neo4jUri, NEO4J_USERNAME: config.neo4jUsername, NEO4J_PASSWORD: config.neo4jPassword}})