smithery.yaml•1.14 kB
# Smithery configuration file: https://smithery.ai/docs/build/project-config
startCommand:
type: stdio
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'npx', args: ['-y', 'minimax-mcp-js'], env: { MINIMAX_API_KEY: config.apiKey, MINIMAX_API_HOST: config.apiHost, MINIMAX_MCP_BASE_PATH: config.basePath, MINIMAX_RESOURCE_MODE: config.resourceMode } })
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- apiKey
properties:
apiKey:
type: string
description: MiniMax API Key
apiHost:
type: string
default: https://api.minimaxi.chat
description: MiniMax API Host
basePath:
type: string
default: /tmp
description: Base path for output files
resourceMode:
type: string
default: url
description: Resource handling mode
exampleConfig:
apiKey: your_api_key_here
apiHost: https://api.minimaxi.chat
basePath: /tmp/minimax
resourceMode: url