447 packages tagged with “mcp”
.NET SDK for the Model Context Protocol (MCP) with hosting and dependency injection extensions.
Core .NET SDK for the Model Context Protocol (MCP)
ASP.NET Core extensions for the C# Model Context Protocol (MCP) SDK.
A Model Context Protocol (MCP) server for NuGet.
Azure MCP Server - Model Context Protocol implementation for Azure. Internal implementation package for win-x64.
Azure MCP Server - Model Context Protocol implementation for Azure
.NET library for the Model Context Protocol (MCP)
ReflectorNet is an advanced .NET reflection toolkit designed for AI-driven scenarios. Effortlessly search for C# methods using natural language queries, invoke any method by supplying arguments as JSON, and receive results as JSON. The library also provides a powerful API to inspect, modify, and manage in-memory object instances dynamically via JSON data. Ideal for automation, testing, and AI integration workflows.
A thin client library for Cimpress' Tagliatelle service.
LLM Tornado is a .NET provider-agnostic SDK that empowers developers to build, orchestrate, and deploy AI agents and workflows. Whether you're building a simple chatbot or an autonomous coding agent, LLM Tornado provides the tools you need with unparalleled integration into the AI ecosystem.
Azure MCP Server - Model Context Protocol implementation for Azure. Internal implementation package for osx-arm64.
Azure MCP Server - Model Context Protocol implementation for Azure. Internal implementation package for linux-x64.
Azure MCP Server - Model Context Protocol implementation for Azure. Internal implementation package for linux-arm64.
Azure MCP Server - Model Context Protocol implementation for Azure. Internal implementation package for osx-x64.
Azure MCP Server - Model Context Protocol implementation for Azure. Internal implementation package for win-arm64.
Common framework for building a Sse MCP server.
An Aspire to run the MCP Inspector against a MCP server.
Template MCP Server - Basic Model Context Protocol implementation
Package Description
Model Context Protocol server for Alfa Investments PRO Terminal
McpPlugin common code for McpPlugin and McpPlugin.Server projects. It is .NET Library project for integration MCP server features into any dotnet application. It connects automatically with MCP server and exposes it's API over TCP connection in runtime. When MCP server interacts with AI.
Templates for creating MCP servers using COA MCP Framework
Build Model Context Protocol (MCP) servers and clients in .NET with MCPSharp. Create MCP-compliant tools and functions that AI models can discover and use. Features easy to use attribute-based API allowing anyone to spin up a server in minutes, and a Microsoft.Extensions.AI compatible client that generates AIFunctions, ready to be consumed by any IChatClient or compatible system. await MCPServer.StartAsync("EchoServer", "1.0.0"); --- server: class MyTool { [McpTool("echo","returns the input string back to you")] public string echo(string input) => input; } ---client: var client = new MCPClient("MyClient","1.0.0", "EchoServer.exe" //or dotnet EchoServer.dll if you wish await client.CallToolAsync("echo", new Dictionary<string, object>{{"input", "input string to echo"}});