Skip to content

Commit 649270a

Browse files
author
jzhu
committed
add deepwiki
1 parent d144b3d commit 649270a

1 file changed

Lines changed: 89 additions & 0 deletions

File tree

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
{
2+
"name": "deepwiki",
3+
"display_name": "DeepWiki",
4+
"description": "AI-powered knowledge base and documentation search system",
5+
"repository": {
6+
"type": "http",
7+
"url": "https://mcp.deepwiki.com/mcp"
8+
},
9+
"homepage": "https://deepwiki.com",
10+
"author": {
11+
"name": "DeepWiki"
12+
},
13+
"license": "Proprietary",
14+
"categories": [
15+
"Knowledge Base",
16+
"Documentation"
17+
],
18+
"tags": [
19+
"wiki",
20+
"documentation",
21+
"knowledge base",
22+
"search"
23+
],
24+
"installations": {
25+
"http": {
26+
"type": "http",
27+
"url": "https://mcp.deepwiki.com/mcp",
28+
"description": "Run deepwiki mcp directly with HTTP",
29+
"recommended": true
30+
}
31+
},
32+
"examples": [
33+
{
34+
"title": "Basic DeepWiki Query",
35+
"description": "Search for information in the knowledge base.",
36+
"prompt": "Can you find documentation about..."
37+
}
38+
],
39+
"tools": [
40+
{
41+
"name": "search_knowledge_base",
42+
"description": "Search for information in the DeepWiki knowledge base",
43+
"inputSchema": {
44+
"type": "object",
45+
"properties": {
46+
"query": {
47+
"type": "string",
48+
"description": "The search query to find relevant documentation"
49+
},
50+
"limit": {
51+
"type": "number",
52+
"description": "Maximum number of results to return",
53+
"default": 5
54+
}
55+
},
56+
"required": [
57+
"query"
58+
]
59+
}
60+
},
61+
{
62+
"name": "get_article",
63+
"description": "Retrieve a specific article by ID or title",
64+
"inputSchema": {
65+
"type": "object",
66+
"properties": {
67+
"article_id": {
68+
"type": "string",
69+
"description": "The unique identifier of the article"
70+
}
71+
},
72+
"required": [
73+
"article_id"
74+
]
75+
}
76+
},
77+
{
78+
"name": "list_categories",
79+
"description": "List all available categories in the knowledge base",
80+
"inputSchema": {
81+
"type": "object",
82+
"properties": {}
83+
}
84+
}
85+
],
86+
"is_official": false,
87+
"is_archived": false,
88+
"docker_url": null
89+
}

0 commit comments

Comments
 (0)