makwo-cli
v1.1.0
Published
Command line interface and MCP Context Engine for the MakWo knowledge base
Readme
MakWo CLI
This package provides the command-line interface and the Model Context Protocol (MCP) server for MakWo.
Installation
npm install -g makwo-cliUsage
Command Line Interface (CLI)
The makwo command allows you to control your running MakWo GUI application from the terminal.
makwo map # Get the complete knowledge base index map
makwo query <keyword> # Let Semantic Router find and extract relevant articles
makwo read <path> # Read a specific file by relative path
makwo write <path> [-f <file>] [--force] # Write markdown into the knowledge base (stdin or local file)Note: The MakWo desktop application must be running for the CLI to work.
MCP Server
The makwo-mcp command starts the MCP Context Engine, allowing external AI agents (like Claude Desktop, Cursor, Trae) to seamlessly interact with your MakWo knowledge base.
To use it with Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"makwo": {
"command": "npx",
"args": ["-y", "makwo-cli", "makwo-mcp"]
}
}
}License
MIT
