File tree Expand file tree Collapse file tree
code_assistant_manager/mcp/registry/servers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments