smithery.yaml•866 B
# 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:
- premApiKey
- premProjectId
properties:
premApiKey:
type: string
description: API key for Prem AI authentication.
premProjectId:
type: string
description: Prem project ID.
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({
command: 'node',
args: ['build/index.js', '--stdio'],
env: {
PREM_API_KEY: config.premApiKey,
PREM_PROJECT_ID: config.premProjectId
}
})
exampleConfig:
premApiKey: YOUR_PREM_API_KEY
premProjectId: YOUR_PROJECT_ID