1. Conduid
  2. Developer Tools
  3. Development Tools MCP Server
MCP server · Developer Tools

Development Tools MCP Server

A series of helpful developer tools exposed via an MCP server.

Unclaimed last commit 9 months ago mcpdeveloper-toolsmcp-serverdevtoolsdotnet
48Fair

Scored 10 hours ago · breakdown

About Development Tools MCP Server

Development Tools MCP Server is an MCP server published by dominic-codespoti in the Developer Tools category: a series of helpful developer tools exposed via an MCP server. 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 development-tools-mcp-server

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 Development Tools MCP Server

Powered by Claude · Grounded in docs

I know everything about Development Tools MCP Server. 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.

Releases

main-20251112-130426Release main-20251112-130426 · 12 Nov 2025
main-20250622-131716Release main-20250622-131716 · 22 Jun 2025
main-20250622-131529Release main-20250622-131529 · 22 Jun 2025
main-20250622-131318Release main-20250622-131318 · 22 Jun 2025
main-20250622-131115Release main-20250622-131115 · 22 Jun 2025

README

Developer Tools MCP Server

A .NET 9.0 implementation of a Model Context Protocol (MCP) server with tools intended to improve developer productivity.

Overview

This project provides an MCP server that exposes web search, content extraction, and code analysis capabilities as tools for AI agents and clients. It is built using the official ModelContextProtocol C# SDK and is designed for easy integration and extension.

Features

  • Web Search Tool: Search the web for relevant URLs using DuckDuckGo.
  • Content Extraction Tool: Scrape and extract readable text from web pages.
  • Code Analysis Tool: A code analysis interface that can be implemented for many languages. Currently supports C# code symbols (classes, methods, etc.) to extract structural details such as parameters, generics, overloads, and documentation.

Project Structure

  • src/DeveloperTools.Mcp.Abstractions/ – Shared interfaces, including IWebSearchService.
  • src/DeveloperTools.Mcp.Server/ – Main server implementation, tool definitions, and service registration.

Usage

Prerequisites

Install as a .NET Tool

The MCP server is distributed as a .NET global tool via NuGet. To install it, run:

dotnet tool install --global developer-tools-mcp-server

To update to the latest version:

dotnet tool update --global developer-tools-mcp-server

Run the Server

After installing, you can start the server with:

developer-tools-mcp-server

The server will start and listen for MCP requests via stdio transport.

Local Build (for development)

If you want to build and run the server locally (for development or testing):

dotnet build
cd src/DeveloperTools.Mcp.Server
dotnet run

Extending

You can add new tools to the MCP server by creating static methods in any class and decorating them with the [McpServerTool] attribute. These methods will be exposed as tools to MCP clients. For example, you can add new capabilities for data access, computation, or integration with external services. See Tools/WebSearcher.cs for examples of tool definitions.

To add a new web search or scraping tool, you can implement the IWebSearchService interface and register your implementation in the DI container. For general-purpose tools, simply add new static methods with the appropriate attributes.

Dependencies

References


This project is intended for developers building AI-powered tools and integrations using the Model Context Protocol.

README mirrored from the source repository 10 hours ago. The original is authoritative.

Questions

About Development Tools MCP Server

How do I install Development Tools MCP Server?

Run npx development-tools-mcp-server, 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 Development Tools MCP Server safe to use with an AI agent?

Its trust score is 48 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 Development Tools MCP Server still maintained?

The last commit was 9 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.