Tool
ChainLens MCP tool β discover sellers, request data, check job status from Claude Desktop and other MCP clients.
Installation
npx mcp-server-toolAsk AI about Tool
Powered by Claude Β· Grounded in docs
I know everything about Tool. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
.NET Code Review Agent (MCP Server)
A custom Model Context Protocol (MCP) server for reviewing .NET Core 8 microservices.
Optimized for GitHub Copilot and Gemini CLI.
Features
- ποΈ Microservice Analysis: Validates architecture, layers, and patterns.
- π§ Memory Leak Detection: Checks for unclosed resources, event leaks, and incorrect
IDisposableusage. - β‘ Performance Optimization: Detects N+1 problems (DB calls in loops) and sync-over-async.
- π‘οΈ Code Quality: Checks error handling, naming conventions, and best practices.
- π¦ Dependency Review: Checks for outdated or insecure packages.
Installation
This project is portable. To use it, you just need Node.js and Bun (or npm).
1. Install Dependencies
bun install
# or
npm install
2. Connect to Output
You can connect this server to any MCP client (GitHub Copilot, Gemini CLI, Claude Desktop).
GitHub Copilot Integration
To add this server to GitHub Copilot in VS Code:
- Open this folder in a terminal.
- Run the automated setup script:
bun run setup # or node setup-copilot.js - Restart VS Code.
- Ask Copilot: "Run memory leak detection on my project" or "Analyze this microservice structure".
Manual Configuration (VS Code)
Add this to your VS Code settings.json (found in %APPDATA%\Code\User\settings.json):
"github.copilot.chat.mcpServers": {
"dotnet-review": {
"command": "node",
"args": ["D:\\Projects\\MCP_Servers\\dotnet-review-mcp\\index.js"]
}
}
Gemini CLI Integration
Add the following to your Gemini CLI configuration:
{
"mcpServers": {
"dotnet-review": {
"command": "node",
"args": ["D:\\Projects\\MCP_Servers\\dotnet-review-mcp\\index.js"]
}
}
}
Sharing Cleanly
To share this with a teammate:
- Delete
node_modules. - Zip the
dotnet-review-mcpfolder. - Send the zip file.
- They unzip it and run
bun installfollowed bybun run setup.
