Files
google-mcp/smithery.yaml

19 lines
407 B
YAML
Raw Normal View History

2025-05-17 13:18:46 -04:00
# Smithery.ai configuration
startCommand:
2025-05-17 15:39:42 -04:00
type: http
2025-05-17 13:18:46 -04:00
configSchema:
# JSON Schema defining the configuration options for the MCP.
{}
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({
"command": "python",
"args": [
"main.py"
],
"env": {
...
}
})