-
Notifications
You must be signed in to change notification settings - Fork 163
[WIP] Add MCP install instructions to skills #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,26 @@ compatibility: Requires Microsoft Learn MCP Server (https://learn.microsoft.com/ | |
|
|
||
| # Microsoft Docs | ||
|
|
||
| ## Prerequisites: Connect to the Microsoft Learn MCP Server | ||
|
|
||
| This skill requires the **Microsoft Learn MCP Server**. If it's not already connected, add it to your MCP client configuration: | ||
|
|
||
| **Remote MCP Endpoint:** `https://learn.microsoft.com/api/mcp` | ||
|
|
||
| **Sample config (works in most MCP clients):** | ||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "microsoft-learn": { | ||
| "type": "http", | ||
| "url": "https://learn.microsoft.com/api/mcp" | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
Comment on lines
+17
to
+26
|
||
|
|
||
| No API key or authentication required. For client-specific setup (VS Code, Claude, Cursor, etc.), see the [full installation guide](https://github.com/MicrosoftDocs/mcp#-installation--getting-started). | ||
|
|
||
| ## Tools | ||
|
|
||
| | Tool | Use For | | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,26 @@ compatibility: Requires Microsoft Learn MCP Server (https://learn.microsoft.com/ | |
|
|
||
| Create hybrid skills for Microsoft technologies that store essential knowledge locally while enabling dynamic Learn MCP lookups for deeper details. | ||
|
|
||
| ## Prerequisites: Connect to the Microsoft Learn MCP Server | ||
|
|
||
| This skill requires the **Microsoft Learn MCP Server**. If it's not already connected, add it to your MCP client configuration: | ||
|
|
||
| **Remote MCP Endpoint:** `https://learn.microsoft.com/api/mcp` | ||
|
|
||
| **Sample config (works in most MCP clients):** | ||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "microsoft-learn": { | ||
| "type": "http", | ||
| "url": "https://learn.microsoft.com/api/mcp" | ||
| } | ||
| } | ||
| } | ||
|
Comment on lines
+19
to
+27
|
||
| ``` | ||
|
|
||
| No API key or authentication required. For client-specific setup (VS Code, Claude, Cursor, etc.), see the [full installation guide](https://github.com/MicrosoftDocs/mcp#-installation--getting-started). | ||
|
|
||
| ## About Skills | ||
|
|
||
| Skills are modular packages that extend agent capabilities with specialized knowledge and workflows. A skill transforms a general-purpose agent into a specialized one for a specific domain. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The JSON configuration format uses "mcpServers" as the top-level key, but the README.md shows "servers" as the standard config format (line 67). This inconsistency could confuse users. Consider using "servers" to match the documented standard, or add a note that different MCP clients may use different configuration keys (e.g., "mcpServers", "servers", etc.).