1.0.1 • Published 7 months ago
@mcpflow.io/mcp-mentor-mcp-server v1.0.1
mentor-mcp-server
此包由 MCPFlow 打包并发布到npm仓库。
一个模型上下文协议服务器,通过基于人工智能的Deepseek-Reasoning R1导师能力为LLM代理提供第二意见,包括代码审查、设计批判、写作反馈以及通过Deepseek API进行创意头脑风暴。
安装与使用
直接使用npx运行:
npx @mcpflow.io/mcp-mentor-mcp-server或者先安装后使用:
# 安装
npm install @mcpflow.io/mcp-mentor-mcp-server
# 使用
npx @mcpflow.io/mcp-mentor-mcp-server使用方法
Installation
## 工具函数
### Code
**参数:**
## 原始信息
- **开发者:** cyanheads
- **版本:** 1.0.0
- **许可证:** Apache License 2.0
- **原始仓库:** [cyanheads/mentor-mcp-server](https://github.com/cyanheads/mentor-mcp-server)
## 原始README
# mentor-mcp-server
[](https://www.typescriptlang.org/)
[](https://modelcontextprotocol.io/)
[]()
[](https://opensource.org/licenses/Apache-2.0)
[]()
[](https://github.com/cyanheads/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. Set your LLM Agent up for success with expert second opinions and actionable insights.
## Model Context Protocol
The Model Context Protocol (MCP) enables communication between:
- **Clients**: Claude Desktop, IDEs, and other MCP-compatible clients
- **Servers**: Tools and resources for task management and automation
- **LLM Agents**: AI models that leverage the server's capabilities
## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Configuration](#configuration)
- [Tools](#tools)
- [Examples](#examples)
- [Development](#development)
- [Project Structure](#project-structure)
- [License](#license)
## Features
### Code Analysis
- Comprehensive code reviews
- Bug detection and prevention
- Style and best practices evaluation
- Performance optimization suggestions
- Security vulnerability assessment
### Design & Architecture
- UI/UX design critiques
- Architectural diagram analysis
- Design pattern recommendations
- Accessibility evaluation
- Consistency checks
### Content Enhancement
- Writing feedback and improvement
- Grammar and style analysis
- Documentation review
- Content clarity assessment
- Structural recommendations
### Strategic Planning
- Feature enhancement brainstorming
- Second opinions on approaches
- Innovation suggestions
- Feasibility analysis
- User value assessment
## Installation
```bash
# 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 buildConfiguration
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"
      }
    }
  }
}Environment Variables
| Variable | Required | Default | Description | 
|---|---|---|---|
| DEEPSEEK_API_KEY | Yes | - | Your Deepseek API key | 
| DEEPSEEK_MODEL | Yes | deepseek-reasoner | Deepseek model name | 
| DEEPSEEK_MAX_TOKENS | No | 8192 | Maximum tokens per request | 
| DEEPSEEK_MAX_RETRIES | No | 3 | Number of retry attempts | 
| DEEPSEEK_TIMEOUT | No | 30000 | Request timeout (ms) | 
Tools
Code Review
<use_mcp_tool>
<server_name>mentor-mcp-server</server_name>
<tool_name>code_review</tool_name>
<arguments>
{
  "file_path": "src/app.ts",
  "language": "typescript"
}
</arguments>
</use_mcp_tool>Design Critique
<use_mcp_tool>
<server_name>mentor-mcp-server</server_name>
<tool_name>design_critique</tool_name>
<arguments>
{
  "design_document": "path/to/design.fig",
  "design_type": "web UI"
}
</arguments>
</use_mcp_tool>Writing Feedback
<use_mcp_tool>
<server_name>mentor-mcp-server</server_name>
<tool_name>writing_feedback</tool_name>
<arguments>
{
  "text": "Documentation content...",
  "writing_type": "documentation"
}
</arguments>
</use_mcp_tool>Feature Enhancement
<use_mcp_tool>
<server_name>mentor-mcp-server</server_name>
<tool_name>brainstorm_enhancements</tool_name>
<arguments>
{
  "concept": "User authentication system"
}
</arguments>
</use_mcp_tool>Examples
Detailed examples of each tool's usage and output can be found in the examples directory:
- Second Opinion Example - Analysis of authentication system requirements
 - Code Review Example - Detailed TypeScript code review with security and performance insights
 - Design Critique Example - Comprehensive UI/UX feedback for a dashboard design
 - Writing Feedback Example - Documentation improvement suggestions
 - Brainstorm Enhancements Example - Feature ideation with implementation details
 
Each example includes the request format and sample response, demonstrating the tool's capabilities and output structure.
Development
# Build TypeScript code
npm run build
# Start the server
npm run start
# Development with watch mode
npm run dev
# Clean build artifacts
npm run cleanProject Structure
src/
├── api/         # API integration modules
├── tools/       # Tool implementations
│   ├── second-opinion/
│   ├── code-review/
│   ├── design-critique/
│   ├── writing-feedback/
│   └── brainstorm-enhancements/
├── types/       # TypeScript type definitions
├── utils/       # Utility functions
├── config.ts    # Server configuration
├── index.ts     # Entry point
└── server.ts    # Main server implementationLicense
Apache License 2.0. See LICENSE for more information.