# Smithery configuration file: https://smithery.ai/docs/build/project-config
startCommand:
type: stdio
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'],
env: {
SCRAPER_API_USERNAME: config.scraperApi01Username,
SCRAPER_API_PASSWORD: config.scraperApi02Password,
},
})
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- scraperApi01Username
- scraperApi02Password
properties:
scraperApi01Username:
type: string
description: Username for Decodo Scraper API
scraperApi02Password:
type: string
description: Password for Decodo Scraper API
exampleConfig:
scraperApi01Username: your_username
scraperApi02Password: your_password