NetAgents 0.1.7

dotnet tool install --global NetAgents --version 0.1.7
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local NetAgents --version 0.1.7
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=NetAgents&version=0.1.7
                    
nuke :add-package NetAgents --version 0.1.7
                    

netagents

netagents publishes a small set of packages for managing .agents skill repositories and building compile-time MCP servers in .NET.

Packages

  • NetAgents: a .NET tool for initializing, installing, syncing, and trusting .agents directories.
  • Qyl.Agents.Abstractions: [McpServer] and [Tool] attributes used by the generator.
  • Qyl.Agents.Generator: incremental source generator that emits MCP dispatch, metadata, schema, and telemetry glue.
  • Qyl.Agents: runtime protocol and hosting helpers for generated servers.

Install

dotnet tool install --global NetAgents
dotnet add package Qyl.Agents.Abstractions
dotnet add package Qyl.Agents.Generator
dotnet add package Qyl.Agents

Quick Start

using Qyl.Agents;

[McpServer("calc-server")]
public partial class CalcServer
{
    [Tool]
    public int Add(int a, int b) => a + b;
}

The generator produces the MCP-facing dispatch and metadata at build time. The runtime package provides the protocol host and handler used to serve generated MCP servers.

For repository management, initialize a project with:

netagents init
netagents add getsentry/dotagents
netagents install

Repository

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
0.1.7 31 3/13/2026
0.0.27-ci.gd4863c9 44 3/13/2026 0.0.27-ci.gd4863c9 is deprecated.