loading…
Search for a command to run...
loading…
RAG Knowledge Graph - MCP server providing AI-powered tools and automation by MEOK AI Labs
RAG Knowledge Graph - MCP server providing AI-powered tools and automation by MEOK AI Labs
MCP server for rag knowledge graph mcp operations
Rag Knowledge Graph MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
index_document |
Index a document for RAG retrieval. Generates embeddings and extracts entities. |
rag_query |
Query the knowledge base. Methods: vector (semantic), keyword (FTS5), hybrid (bo |
add_graph_edge |
Add a relationship to the knowledge graph. |
graph_query |
Traverse the knowledge graph from an entity to find connections. |
get_knowledge_stats |
Get knowledge base statistics. |
pip install meok-rag-knowledge-graph-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"rag-knowledge-graph": {
"command": "python",
"args": ["-m", "meok_rag_knowledge_graph_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 5 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"rag-knowledge-graph-mcp": {
"command": "npx",
"args": []
}
}
}