mentor-mcp-server
by cyanheads·★ 31·Score 41
MCP server providing LLM agents with expert mentorship for code review, design critique, and writing feedback.
Overview
The mentor-mcp-server is a comprehensive implementation of the Model Context Protocol that leverages Deepseek's reasoning capabilities to provide second opinions for LLM agents. It offers four main categories of tools: code analysis (reviews, bug detection, performance optimization), design critique (UI/UX, architecture, accessibility), content enhancement (writing feedback, documentation review), and strategic planning (feature brainstorming, feasibility analysis). The server is well-structured with TypeScript implementation and comprehensive documentation.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose this server when your LLM agents need expert second opinions for code, design, writing, or feature planning, especially if you already have access to Deepseek API.
When NOT to choose this
Don't choose this if you don't have access to Deepseek API or need a completely offline solution, as this server requires external API calls.
Tools this server exposes
4 tools extracted from the READMEcode_reviewReview and analyze code for bugs, style, and best practices
design_critiqueProvide feedback on UI/UX design and architecture
writing_feedbackAnalyze and improve written documentation and content
brainstorm_enhancementsGenerate feature ideas and improvement suggestions
Comparable tools
Installation
# Clone the repository
git clone git@github.com/cyanheads/mentor-mcp-server.git
cd mentor-mcp-server
# Install dependencies
npm install
# Build the project
npm run buildAdd to your MCP client settings:
{
"mcpServers": {
"mentor": {
"command": "node",
"args": ["build/index.js"],
"env": {
"DEEPSEEK_API_KEY": "your_api_key",
"DEEPSEEK_MODEL": "deepseek-reasoner",
"DEEPSEEK_MAX_TOKENS": "8192",
"DEEPSEEK_MAX_RETRIES": "3",
"DEEPSEEK_TIMEOUT": "30000"
}
}
}
}FAQ
- What Deepseek model does this server use?
- By default, it uses 'deepseek-reasoner' but can be configured to use other Deepseek models via the DEEPSEEK_MODEL environment variable.
- Can I use this MCP server with any MCP-compatible client?
- Yes, it's compatible with any MCP client that supports tool calling, including Claude Desktop and IDEs with MCP integration.
Compare mentor-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.