kk-knowledge-agent

kanna12580/kk-knowledge-agent
★ 0 stars Python AI/LLM Updated 5d ago
轻量级知识库系统,支持知识库管理、文本/txt 上传、语义检索、流式返回,并将检索能力封装为 MCP Server,供 Agent 调用。
View on GitHub → Try with Claude — $10 free →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "kk-knowledge-agent": {
      "command": "uvx",
      "args": [
        "kk-knowledge-agent"
      ]
    }
  }
}

Or install with pip: pip install kk-knowledge-agent

README Excerpt

轻量级知识库 Agent 项目,支持知识库管理、文本/txt 上传、分块向量化、语义检索、流式返回,并通过 MCP Server 暴露给 Agent 调用。 ```text Frontend | | HTTP v Backend API | +--> SQLite +--> ChromaDB +--> sentence-transformers Agent / Claude Code / OpenClaw / Hermas Agent | | MCP Tool Call v MCP Server | | HTTP v Backend API ``` ```text backend/ FastAPI API service