-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcognee-mcp-server.json
42 lines (42 loc) · 1 KB
/
cognee-mcp-server.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"server_info": {
"name": "mcpcognee",
"description": "A server for the Model Context Protocol (MCP) that provides tools for knowledge graph building and search.",
"repo_url": "https://github.com/topoteretes/cognee-mcp-server",
"server_type": "Community Servers",
"server_categories": [
"Search",
"Knowledge Graph"
],
"server_version": "0.1.0"
},
"tools": [
{
"name": "Cognify_and_search",
"description": "Build knowledge graph from the input text and search in it.",
"input_schema": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"search_query": {
"type": "string"
},
"graph_model_file": {
"type": "string"
},
"graph_model_name": {
"type": "string"
}
},
"required": [
"text",
"search_query"
]
}
}
],
"resources": [],
"prompts": []
}