smithery.yaml•754 B
startCommand:
type: stdio
configSchema:
type: object
properties:
PLUGGEDIN_API_KEY:
type: string
description: Your Plugged.in API key for authenticated operations (see plugged.in/api-keys). Leave empty for tool discovery only.
PLUGGEDIN_API_BASE_URL:
type: string
description: Base URL for your Plugged.in instance (optional, defaults to https://plugged.in)
commandFunction: |
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
...process.env,
...(config.PLUGGEDIN_API_KEY && { PLUGGEDIN_API_KEY: config.PLUGGEDIN_API_KEY }),
...(config.PLUGGEDIN_API_BASE_URL && { PLUGGEDIN_API_BASE_URL: config.PLUGGEDIN_API_BASE_URL })
}
})