fix smithery

This commit is contained in:
Taylor Wilsdon
2025-06-07 18:12:29 -04:00
parent c54e8d30db
commit 6370b6f2cf
4 changed files with 21 additions and 13 deletions

View File

@@ -1,13 +1,17 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config
runtime: "container"
build:
dockerfile: "Dockerfile"
dockerBuildPath: "."
startCommand:
type: http
type: "http"
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- clientSecretsPath
type: "object"
properties:
clientSecretsPath:
type: string
description: Path to your client_secrets.json file
type: "string"
description: "Path to your client_secrets.json file"
required: ["clientSecretsPath"]
exampleConfig:
clientSecretsPath: "/app/client_secrets.json"