-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsmithery.yaml
More file actions
34 lines (33 loc) · 1.12 KB
/
smithery.yaml
File metadata and controls
34 lines (33 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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