# Smithery.ai configuration
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
{
"service": "", # Service Endpoint
"instance": "", # Instance ID
"workspace": "", # Workspace/Database Name
"schema": "", # Schema Name
"username": "", # Login username
"password": "", # Login password
"vcluster": "" # Virtual Cluster Name
}
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({
"command": "node",
"args": [
"dist/index.js"
],
"env": {
"service": "", # Service Endpoint
"instance": "", # Instance ID
"workspace": "", # Workspace/Database Name
"schema": "", # Schema Name
"username": "", # Login username
"password": "", # Login password
"vcluster": "" # Virtual Cluster Name
}
})