oci ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107stdioMITupdated 8d ago
Welcome to the Model Context Protocol (MCP) .NET Samples repository! This collection of samples demonstrates how to leverage the Model Context Protocol in .NET applications.
O que dá para fazer com Awesome Copilot MCP Server?
Model Context Protocol .NET Samples
🚀 Introduction
Welcome to the Model Context Protocol (MCP) .NET Samples repository! This collection of samples demonstrates how to leverage the Model Context Protocol in .NET applications.
MCP is an open protocol that standardizes how applications provide context to Large Language Models (LLMs). Think of MCP like a USB-C port for AI applications - it provides a standardized way to connect AI models to different data sources and tools.
With MCP, you can:
- Utilize pre-built integrations that your LLM can directly plug into
- Flexibly switch between LLM providers and vendors
- Follow best practices for securing your data within your infrastructure
- Build agents and complex workflows on top of LLMs
This repository contains .NET samples ranging from building your own MCP implementation to integrating with Azure services.
📋 Sample Projects
| Sample Name | Install | Description |
|---|---|---|
| Awesome Copilot | MCP server that retrieves GitHub Copilot customization files from awesome-copilot. | |
| Markdown to HTML | MCP server that converts markdown text to HTML. | |
| Outlook Email | MCP server that sends emails through Outlook. | |
| To-do List | MCP server that manages to-do list items. |
🛠️ Getting Started
Details on how to set up and run the samples will be provided in each sample's directory.
📚 Learning Resources
🚶♀️ Next Steps
- Learn more about GenAI with .NET with a free course!
- Join the Azure AI Community Discord to keep the conversation going
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.
Instalação
Adicione Awesome Copilot MCP Server ao seu cliente. Escolha o que você usa.
claude mcp add ghcr-io-microsoft-mcp-dotnet-samples-awe -- docker run -i --rm ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107codex mcp add ghcr-io-microsoft-mcp-dotnet-samples-awe -- docker run -i --rm ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107amp mcp add ghcr-io-microsoft-mcp-dotnet-samples-awe -- docker run -i --rm ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107{
"mcpServers": {
"ghcr-io-microsoft-mcp-dotnet-samples-awe": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ghcr-io-microsoft-mcp-dotnet-samples-awe": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ghcr-io-microsoft-mcp-dotnet-samples-awe","command":"docker","args":["run","-i","--rm","ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ghcr-io-microsoft-mcp-dotnet-samples-awe": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ghcr-io-microsoft-mcp-dotnet-samples-awe": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ghcr-io-microsoft-mcp-dotnet-samples-awe": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ghcr-io-microsoft-mcp-dotnet-samples-awe": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ghcr-io-microsoft-mcp-dotnet-samples-awe": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026083107Run `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação14/25
- Manutenção25/25
- Confiança16/20
- Capacidade0/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.0.2026050401 | 4 de mai. de 2026 |
| 1.0.2026050100 | 1 de mai. de 2026 |
| 1.0.2026043000 | 30 de abr. de 2026 |
| 1.0.2026042903 | 29 de abr. de 2026 |
| 1.0.2026042901 | 29 de abr. de 2026 |
| 1.0.2026042808 | 28 de abr. de 2026 |
| 1.0.2026042805 | 28 de abr. de 2026 |
| 1.0.2026042803 | 28 de abr. de 2026 |
| 1.0.2026042003 | 20 de abr. de 2026 |
| 1.0.2026041701 | 17 de abr. de 2026 |
| 1.0.2026041523 | 15 de abr. de 2026 |
| 1.0.2026041400 | 14 de abr. de 2026 |
| 1.0.2026041300 | 13 de abr. de 2026 |
| 1.0.2026041005 | 10 de abr. de 2026 |
| 1.0.2026041001 | 10 de abr. de 2026 |
| 1.0.2026041000 | 10 de abr. de 2026 |
| 1.0.2026040905 | 9 de abr. de 2026 |
| 1.0.2026040903 | 9 de abr. de 2026 |
| 1.0.2026040901 | 9 de abr. de 2026 |
| 1.0.2026040800 | 8 de abr. de 2026 |
| 1.0.2026040123 | 1 de abr. de 2026 |
| 1.0.2026040100 | 1 de abr. de 2026 |
| 1.0.2026033100 | 31 de mar. de 2026 |
| 1.0.2026033001 | 30 de mar. de 2026 |
| 1.0.2026033000 | 30 de mar. de 2026 |
| 1.0.2026032921 | 29 de mar. de 2026 |
| 1.0.2026032705 | 27 de mar. de 2026 |
| 1.0.2026032700 | 27 de mar. de 2026 |
| 1.0.2026032523 | 25 de mar. de 2026 |
| 1.0.2026032500 | 25 de mar. de 2026 |
| 1.0.2026032423 | 24 de mar. de 2026 |
| 1.0.2026032405 | 24 de mar. de 2026 |
| 1.0.2026032323 | 23 de mar. de 2026 |
| 1.0.2026032304 | 23 de mar. de 2026 |
| 1.0.2026032303 | 23 de mar. de 2026 |
| 1.0.2026032300 | 23 de mar. de 2026 |
| 1.0.2026032004 | 20 de mar. de 2026 |
| 1.0.2026032000 | 20 de mar. de 2026 |
| 1.0.2026031923 | 19 de mar. de 2026 |
| 1.0.2026031905 | 19 de mar. de 2026 |
| 1.0.2026031900 | 19 de mar. de 2026 |
| 1.0.2026031800 | 18 de mar. de 2026 |
| 1.0.2026031703 | 17 de mar. de 2026 |
| 1.0.2026031622 | 16 de mar. de 2026 |
| 1.0.2026031600 | 16 de mar. de 2026 |
| 1.0.2026031303 | 13 de mar. de 2026 |
| 1.0.2026031223 | 12 de mar. de 2026 |
| 1.0.2026031201 | 12 de mar. de 2026 |
| 1.0.2026031100 | 11 de mar. de 2026 |
| 1.0.2026031000 | 10 de mar. de 2026 |
| 1.0.2026030905 | 9 de mar. de 2026 |
| 1.0.2026030904 | 9 de mar. de 2026 |
| 1.0.2026030900 | 9 de mar. de 2026 |
| 1.0.2026030823 | 8 de mar. de 2026 |
| 1.0.2026030604 | 6 de mar. de 2026 |
| 1.0.2026030602 | 6 de mar. de 2026 |
| 1.0.2026030521 | 5 de mar. de 2026 |
| 1.0.2026030511 | 5 de mar. de 2026 |
| 1.0.2026030502 | 5 de mar. de 2026 |
| 1.0.2026030407 | 4 de mar. de 2026 |