1. Conduid
  2. Developer Tools
  3. Tool
MCP server · Developer Tools

Tool

ChainLens MCP tool — discover sellers, request data, check job status from Claude Desktop and other MCP clients.

Unclaimed last commit 7 months ago mcpmodel-context-protocolclaudechain-lensbaseweb3agents
45Fair

Scored 3 months ago · breakdown

About Tool

Tool is an MCP server published by DanTiw in the Developer Tools category: chainLens MCP tool — discover sellers, request data, check job status from Claude Desktop and other MCP clients. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp-server-tool
Claude Code
claude mcp add tool -- npx -y @chain-lens/mcp-tool
npx
npx -y @chain-lens/mcp-tool

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Tool

Powered by Claude · Grounded in docs

I know everything about Tool. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

.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 IDisposable usage.
  • 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:

  1. Open this folder in a terminal.
  2. Run the automated setup script:
    bun run setup
    # or
    node setup-copilot.js
    
  3. Restart VS Code.
  4. 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:

  1. Delete node_modules.
  2. Zip the dotnet-review-mcp folder.
  3. Send the zip file.
  4. They unzip it and run bun install followed by bun run setup.

mcp_server_tool

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Tool

How do I install Tool?

Run npx mcp-server-tool, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Tool safe to use with an AI agent?

Its trust score is 45 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Tool still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.