Skip to content

Commit 6bad784

Browse files
committed
feat: rename Microsoft Learn MCP server name
- Update marketplace example from "Microsoft Learn Docs Search" to "Microsoft Learn MCP" - Update documentation to reflect the new name - Update test case to use the new name - All tests passing Addresses user request in issue #6354 to rename the MCP server name
1 parent 8f71ec3 commit 6bad784

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/MARKETPLACE_MCP_SERVERS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ MCP servers in the marketplace follow a specific schema defined in `packages/typ
2626
- `tags`: Array of relevant tags for discovery
2727
- `prerequisites`: Array of requirements (e.g., API keys, software)
2828

29-
## Example: Microsoft Learn Docs Search MCP Server
29+
## Example: Microsoft Learn MCP Server
3030

31-
Here's a complete example of how to define the Microsoft Learn Docs Search MCP server:
31+
Here's a complete example of how to define the Microsoft Learn MCP server:
3232

3333
```yaml
3434
items:
3535
- id: "microsoft-learn-docs-search"
36-
name: "Microsoft Learn Docs Search"
36+
name: "Microsoft Learn MCP"
3737
description: "Official Microsoft documentation search and retrieval server. Access trusted, up-to-date information from Microsoft Learn, Azure docs, Microsoft 365 docs, and other official Microsoft sources using semantic search."
3838
author: "Microsoft"
3939
authorUrl: "https://github.com/MicrosoftDocs"
@@ -92,9 +92,9 @@ For MCP servers distributed as npm packages:
9292
}
9393
```
9494

95-
## Key Features of the Microsoft Learn Docs MCP Server
95+
## Key Features of the Microsoft Learn MCP Server
9696

97-
The Microsoft Learn Docs Search MCP server provides:
97+
The Microsoft Learn MCP server provides:
9898

9999
- **Semantic Search**: Advanced vector search through Microsoft's official documentation
100100
- **Comprehensive Coverage**: Access to Microsoft Learn, Azure docs, Microsoft 365 docs, and more

marketplace-examples/microsoft-learn-docs-mcp.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Microsoft Learn Docs Search MCP Server
2-
# Example marketplace item definition for the Microsoft Learn Docs Search MCP Server
1+
# Microsoft Learn MCP Server
2+
# Example marketplace item definition for the Microsoft Learn MCP Server
33
# This demonstrates the proper format for adding MCP servers to the Roo Code marketplace
44

55
items:
66
- id: "microsoft-learn-docs-search"
7-
name: "Microsoft Learn Docs Search"
7+
name: "Microsoft Learn MCP"
88
description: "Official Microsoft documentation search and retrieval server. Access trusted, up-to-date information from Microsoft Learn, Azure docs, Microsoft 365 docs, and other official Microsoft sources using semantic search."
99
author: "Microsoft"
1010
authorUrl: "https://github.com/MicrosoftDocs"

src/services/marketplace/__tests__/MarketplaceManager.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,10 @@ describe("MarketplaceManager", () => {
224224
expect(result).toBe("/test/path/.roo/mcp.json")
225225
})
226226

227-
it("should install Microsoft Learn Docs MCP item", async () => {
227+
it("should install Microsoft Learn MCP item", async () => {
228228
const item: MarketplaceItem = {
229229
id: "microsoft-learn-docs-search",
230-
name: "Microsoft Learn Docs Search",
230+
name: "Microsoft Learn MCP",
231231
description:
232232
"Official Microsoft documentation search and retrieval server. Access trusted, up-to-date information from Microsoft Learn, Azure docs, Microsoft 365 docs, and other official Microsoft sources using semantic search.",
233233
type: "mcp",

0 commit comments

Comments
 (0)