mirror of
https://github.com/aljazceru/mentor-mcp-server.git
synced 2025-12-17 05:54:26 +01:00
- Switch to OpenAI SDK for Deepseek API calls - Add openai package dependency - Update configuration for Deepseek API - Update environment variable examples - Improve error handling for API responses This change improves reliability and maintainability by using the official SDK with proper typing and error handling.
26 lines
715 B
JSON
26 lines
715 B
JSON
{
|
|
"name": "mentor-mcp-server",
|
|
"version": "1.0.0",
|
|
"description": "MCP server that provides insightful feedback and guidance on various types of user requests",
|
|
"type": "module",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"build": "tsc && chmod +x build/index.js",
|
|
"start": "node build/index.js",
|
|
"dev": "tsc -w",
|
|
"clean": "rm -rf build",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": ["mcp", "mentor", "feedback", "llm"],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.4.1",
|
|
"@types/node": "^22.10.10",
|
|
"axios": "^1.7.9",
|
|
"dotenv": "^16.4.7",
|
|
"typescript": "^5.7.3",
|
|
"openai": "^4.80.1"
|
|
}
|
|
}
|