Skip to content

Commit 85cd161

Browse files
authored
Adding tools.json for Microsoft Learn MCP to help the build which skips tool detection for remote servers (github#290)
* Add Microsoft Learn MCP Server * Create tools.json for Microsoft documentation tools Added tools for searching and fetching Microsoft documentation. * Add microsoft_code_sample_search tool definition * missing comma after descriptions
1 parent 88e6d01 commit 85cd161

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

servers/microsoft-learn/tools.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[
2+
{
3+
"name": "microsoft_docs_search",
4+
"description": "Performs semantic search against Microsoft official technical documentation",
5+
"arguments": [
6+
{
7+
"name": "query",
8+
"type": "string",
9+
"desc": "The search query for retrieval"
10+
}
11+
]
12+
},
13+
{
14+
"name": "microsoft_docs_fetch",
15+
"description": "Fetch and convert a Microsoft documentation page into markdown format",
16+
"arguments": [
17+
{
18+
"name": "url",
19+
"type": "string",
20+
"desc": "URL of the documentation page to read"
21+
}
22+
]
23+
},
24+
{
25+
"name": "microsoft_code_sample_search",
26+
"description": "Search for official Microsoft code snippets and examples",
27+
"arguments": [
28+
{
29+
"name": "query",
30+
"type": "string",
31+
"desc": "Search query for Microsoft code snippets"
32+
},
33+
{
34+
"name": "language",
35+
"type": "string",
36+
"desc": "Optional programming language filter"
37+
}
38+
]
39+
}
40+
]

0 commit comments

Comments
 (0)