AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

NetMcpServers

mcp-redth-netmcpservers · by Redth

Collection of my MCP (Model Context Protocol) servers written in .NET

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add mcp-redth-netmcpservers

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-redth-netmcpservers)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
8mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of NetMcpServers? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

.NET MCP Servers

Collection of MCP (Model Context Protocol) servers written in .NET, published as NuGet packages.

Installation

Using dnx (dotnet 10.0+)

With .NET 10 or later, you can run the servers directly without installation:

dnx Mcp.Server.MauiDevEnv --yes

Using dotnet tool (dotnet 8.0+)

For .NET 8 or 9, install as global tools:

dotnet tool install --global Mcp.Server.MauiDevEnv

Configuration

MCP Client Configuration

Add to your MCP client configuration file (e.g., Claude Desktop, GitHub Copilot):

For .NET 10+ (using dnx):

{
  "mcpServers": {
    "mauidevenv": {
      "type": "stdio",
      "command": "dnx",
      "args": ["Mcp.Server.MauiDevEnv", "--yes"]
    }
  }
}

For .NET 8/9 (using installed tools):

{
  "mcpServers": {
    "mauidevenv": {
      "type": "stdio",
      "command": "mcp-server-mauidevenv"
    }
  }
}

See individual mcp.json files in each project folder for ready-to-use configurations.


Servers

MauiDevEnv MCP Server

Package: Mcp.Server.MauiDevEnv Command: mcp-server-mauidevenv or dnx Mcp.Server.MauiDevEnv

Manage .NET MAUI development environments including .NET SDKs, Android SDK, and Java JDK.

Tools

dotnet_info - Get comprehensive .NET SDK and runtime information

  • Returns: JSON with SDK versions, workloads, runtimes, and latest available versions

get_android_environment_info - Get Android SDK and Java JDK information

  • Returns: JSON with Android SDK path, Java JDK path, and installed packages

android_sdk_accept_licenses - Accept Android SDK licenses

  • Parameters: android_sdk_home (optional)

android_sdk_install_package - Install Android SDK packages

  • Parameters: package_path_or_id, android_sdk_home (optional)

android_sdk_uninstall_package - Uninstall Android SDK packages

  • Parameters: package_path_or_id, android_sdk_home (optional)

android_sdk_download - Download Android SDK

  • Parameters: android_sdk_home (required)

Development

Testing Locally

# Test MauiDevEnv server
dotnet run --project MauiDevEnv

Documentation

  • See agents.md files in each project for detailed LLM-friendly documentation
  • Root agents.md provides repository overview

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.