MCP Catalogs
Home

mentor-mcp-server

by cyanheads·31·Score 41

MCP server providing LLM agents with expert mentorship for code review, design critique, and writing feedback.

ai-llmdeveloper-toolsproductivity
18
Forks
3
Open issues
10 mo ago
Last commit
2d ago
Indexed

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:

you:Developers seeking AI-powered code reviews with security and performance insights
you:Product designers getting feedback on UI/UX designs and architecture decisions
you:Technical writers improving documentation clarity and structure
you:Product teams brainstorming feature enhancements and evaluating implementation approaches
you:What Deepseek model does this server use?
you:Can I use this MCP server with any MCP-compatible client?

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 README
  • code_review

    Review and analyze code for bugs, style, and best practices

  • design_critique

    Provide feedback on UI/UX design and architecture

  • writing_feedback

    Analyze and improve written documentation and content

  • brainstorm_enhancements

    Generate feature ideas and improvement suggestions

Comparable tools

claude-mcp-serveropenrouter-mcpdeepseek-r1-api

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 build

Add 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.