chatmcp.yaml•1.13 kB
params:
type: object
properties:
302AI_API_KEY:
type: string
description: 302AI API Key
required:
- 302AI_API_KEY
rest:
name: 302AI
port: 9593
endpoint: /rest
npx:
command:
| 302AI_API_KEY={302AI_API_KEY} npx -y @302ai/file-parser-mcp
config:
| {
"mcpServers": {
"302ai-file-parser-mcp": {
"command": "npx",
"args": [
"-y",
"@302ai/file-parser-mcp"
],
"env": {
"302AI_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
docker:
command:
| docker run -i --rm -e 302AI_API_KEY={302AI_API_KEY} mcp/302ai-file-parser-mcp
config:
| {
"mcpServers": {
"302ai-file-parser-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"302AI_API_KEY",
"mcp/302ai-file-parser-mcp"
],
"env": {
"302AI_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}