mentor-mcp-server
A Model Context Protocol server providing LLM Agents a second opinion via AI-powered Deepseek-Reasoning R1 mentorship capabilities, including code review, design critique, writing feedback, and idea brainstorming through the Deepseek API.
Overview
mentor-mcp-server is a Model Context Protocol server that provides LLM Agents with AI-powered mentorship capabilities, including code review, design critique, writing feedback, and idea brainstorming through the Deepseek API.
To use mentor-mcp-server, clone the repository, install dependencies, and configure your MCP client settings with the required environment variables. You can then utilize various tools for code analysis, design critique, and writing feedback.
- Comprehensive code reviews and bug detection - UI/UX design critiques and architectural analysis - Writing feedback and content enhancement - Feature enhancement brainstorming and strategic planning
- Conducting thorough code reviews for TypeScript projects
- Evaluating UI/UX designs for web applications
- Providing writing feedback for technical documentation
- Brainstorming feature enhancements for software products
Add to your AI client
Use these steps to connect mentor-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mentor-mcp-server-cyanheads": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mentor-mcp-server-cyanheads"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mentor-mcp-server-cyanheads": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mentor-mcp-server-cyanheads"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mentor-mcp-server-cyanheads": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mentor-mcp-server-cyanheads"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mentor-mcp-server-cyanheads": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mentor-mcp-server-cyanheads"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mentor-mcp-server-cyanheads": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mentor-mcp-server-cyanheads"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mentor-mcp-server-cyanheads": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mentor-mcp-server-cyanheads"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP enables communication between clients, servers, and LLM Agents for enhanced task management and automation.
Is mentor-mcp-server free to use?
Yes! mentor-mcp-server is open-source and free to use.
How can I contribute to the project?
You can contribute by submitting issues, feature requests, or pull requests on the GitHub repository.