Skip to content

KB-MCP 2.1.5

Latest

Choose a tag to compare

@github-actions github-actions released this 22 Jul 18:01

KB-MCP v2.1.5

What's New

$COMMITS

Installation

NPM Package

npm install -g @moikas/kb-mcp@2.1.5

Standalone Executables

Download the appropriate executable for your platform:

  • Linux (x64): kb-mcp-linux-x64
  • Windows (x64): kb-mcp-win32-x64.exe
  • macOS (Intel): kb-mcp-darwin-x64
  • macOS (Apple Silicon): kb-mcp-darwin-arm64

Usage

# Initialize knowledge base
kb init

# Start graph database (optional - for advanced features)
kb db start

# Create content
kb write docs/api.md "# API Documentation"

# Search content (basic)
kb search "keyword"

# List files
kb list

# Start MCP server
kb serve

Graph Database Features (New!)

# Start FalkorDB and Redis containers
kb db start

# Switch to graph backend for advanced AI features
kb config set storage.backend graph

# Use with MCP tools for semantic search and graph queries
# Available in Claude Code/Desktop:
# - kb_semantic_search - AI-powered semantic search
# - kb_graph_query - Query knowledge relationships  
# - kb_backend_switch - Switch between storage types

Features

  • ✅ Complete CLI for knowledge base management
  • ✅ Dual storage backends (filesystem + graph database)
  • ✅ Graph database integration with FalkorDB
  • ✅ Vector embeddings and semantic search
  • ✅ Graph queries for relationship discovery
  • ✅ MCP server for Claude Code/Desktop integration
  • ✅ Backend switching (filesystem ↔ graph)
  • ✅ Full-text search with highlighting
  • ✅ File operations (read, write, delete, list)
  • ✅ Docker containerization for graph services
  • ✅ Status reporting and analytics
  • ✅ Cross-platform compatibility
  • ✅ Beautiful terminal interface

Security

All executables are signed and include SHA256 checksums for verification.

Prerequisites for Graph Features

To use the graph database features, you need Docker installed:

  • Docker Desktop (recommended) or Docker Engine
  • At least 2GB RAM available for containers
  • Ports 6581 (FalkorDB) and 7580 (Redis) available

The system will automatically start the required containers when you run kb db start.

Claude Code/Desktop Integration

Add to your MCP configuration:

{
  "mcpServers": {
    "kb-mcp": {
      "command": "kb",
      "args": ["serve"]
    }
  }
}

Auto-Update

The CLI includes built-in update checking:

kb update check    # Check for updates
kb update install  # Install latest version