Skip to content

Commit a772e15

Browse files
authored
Adding MCP Server to the README (#219)
* Adding MCP Server to the README * Don't need that header * Changing summary text * Using aka.ms links * changing logo style to be consistent
1 parent 6493b18 commit a772e15

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,34 @@ This repository provides a comprehensive toolkit for enhancing GitHub Copilot wi
1515
- **[![Awesome Instructions](https://img.shields.io/badge/Awesome-Instructions-blue?logo=githubcopilot)](README.instructions.md)** - Comprehensive coding standards and best practices that apply to specific file patterns or entire projects
1616
- **[![Awesome Chat Modes](https://img.shields.io/badge/Awesome-Chat_Modes-blue?logo=githubcopilot)](README.chatmodes.md)** - Specialized AI personas and conversation modes for different roles and contexts
1717

18+
## MCP Server
19+
20+
To make it easy to add these customizations to your editor, we have created a [MCP Server](https://developer.microsoft.com/blog/announcing-awesome-copilot-mcp-server) that provides a prompt for searching and installing prompts, instructions, and chat modes directly from this repository.
21+
22+
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/mcp/vscode) [![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/mcp/vscode-insiders)
23+
24+
<details>
25+
<summary>Show MCP Server JSON configuration</summary>
26+
27+
```json
28+
{
29+
"servers": {
30+
"awesome-copilot": {
31+
"type": "stdio",
32+
"command": "docker",
33+
"args": [
34+
"run",
35+
"-i",
36+
"--rm",
37+
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:latest"
38+
]
39+
}
40+
}
41+
}
42+
```
43+
44+
</details>
45+
1846
## 🔧 How to Use
1947

2048
### 🎯 Prompts

0 commit comments

Comments
 (0)