-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmithery.yaml
26 lines (25 loc) · 898 Bytes
/
smithery.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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}})