diff --git a/smithery.yaml b/smithery.yaml deleted file mode 100644 index 5c11f3d..0000000 --- a/smithery.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Smithery.ai configuration -startCommand: - type: stdio - configSchema: - # JSON Schema defining the configuration options for the MCP. - type: object - properties: - httpServer: - type: boolean - description: Whether to run the server in HTTP mode - default: false - port: - type: integer - description: Port number for HTTP server - default: 3000 - additionalProperties: false - commandFunction: - # A function that produces the CLI command to start the MCP on stdio. - |- - (config) => ({ - "command": "node", - "args": [ - "dist/index.js" - ], - "env": { - ...(config.httpServer ? { HTTP_SERVER: "true" } : {}), - ...(config.port ? { PORT: config.port.toString() } : {}) - } - }) \ No newline at end of file