-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsmithery.yaml
More file actions
31 lines (30 loc) · 944 Bytes
/
smithery.yaml
File metadata and controls
31 lines (30 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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