Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 43 additions & 2 deletions smithery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,50 @@ startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
{}
type: object
properties:
clientType:
type: string
enum:
- "http"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jairad26 we don't support enum yet - the server can validate and throw an error for this instead. Would recommend adding the allowed values to the description instead

- "cloud"
- "persistent"
- "ephemeral"
default: "ephemeral"
dataDir:
type: string
host:
type: string
port:
type: number
customAuthCredentials:
type: string
tenant:
type: string
database:
type: string
apiKey:
type: string
ssl:
type: boolean
default: true


commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'chroma-mcp', args: [] })
(config) => ({ command: 'chroma-mcp',
args: [],
env: {
CHROMA_CLIENT_TYPE: config.clientType,
CHROMA_DATA_DIR: config.dataDir,
CHROMA_HOST: config.host,
CHROMA_PORT: config.port,
CHROMA_CUSTOM_AUTH_CREDENTIALS: config.customAuthCredentials,
CHROMA_TENANT: config.tenant,
CHROMA_DATABASE: config.database,
CHROMA_API_KEY: config.apiKey,
CHROMA_SSL: config.ssl,
}
})
exampleConfig: {}