Files
mentor-mcp-server/mcp-client-config.example.json
cyanheads 0cbcdc5d01 feat: add configuration validation and examples
- 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
2025-01-25 19:19:29 -08:00

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"
}
}
}
}