Goal Story MCP Server

by hichana
Verified
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - apiUrl - apiKey properties: apiUrl: type: string description: The API endpoint URL for the Goal Story MCP server. apiKey: type: string description: The API key for accessing the Goal Story MCP server. commandFunction: # A function that produces the CLI command to start the MCP on stdio. |- (config) => ({command:'node', args:['dist/index.js', config.apiUrl, config.apiKey]})