update dockerfile

This commit is contained in:
Taylor Wilsdon
2025-05-17 13:18:46 -04:00
parent 6d21a84321
commit ff296edcc9
3 changed files with 47 additions and 6 deletions

View File

@@ -1,4 +1,18 @@
version: 1
start:
command: ["python", "main.py"]
port: 8000
# Smithery.ai configuration
startCommand:
type: http-transport
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": {
...
}
})