A series of helpful developer tools exposed via an MCP server.
{
"mcpServers": {
"development-tools-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A series of helpful developer tools exposed via an MCP server.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 147 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Development Tools Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A .NET 9.0 implementation of a Model Context Protocol (MCP) server with tools intended to improve developer productivity.
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.
src/DeveloperTools.Mcp.Abstractions/ – Shared interfaces, including IWebSearchService.src/DeveloperTools.Mcp.Server/ – Main server implementation, tool definitions, and service registration.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
After installing, you can start the server with:
developer-tools-mcp-server
The server will start and listen for MCP requests via stdio transport.
If you want to build and run the server locally (for development or testing):
dotnet build
cd src/DeveloperTools.Mcp.Server
dotnet run
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.
This project is intended for developers building AI-powered tools and integrations using the Model Context Protocol.