mirror of
https://github.com/aljazceru/mentor-mcp-server.git
synced 2025-12-17 05:54:26 +01:00
- Add validation for all API configuration values - Add bounds checking for numeric values - Add model name validation - Update example configuration with all available options - Add helpful error messages for invalid configuration
18 lines
461 B
JSON
18 lines
461 B
JSON
{
|
|
"mcpServers": {
|
|
"mentor-mcp-server": {
|
|
"command": "node",
|
|
"args": [
|
|
"/path/to/mentor-mcp-server/build/index.js"
|
|
],
|
|
"env": {
|
|
"DEEPSEEK_API_KEY": "your_deepseek_api_key_here",
|
|
"DEEPSEEK_API_BASE_URL": "https://api.deepseek.com",
|
|
"DEEPSEEK_MODEL": "deepseek-reasoner",
|
|
"DEEPSEEK_MAX_TOKENS": "8192",
|
|
"DEEPSEEK_MAX_RETRIES": "3",
|
|
"DEEPSEEK_TIMEOUT": "30000"
|
|
}
|
|
}
|
|
}
|
|
} |