spool-memory 0.2.3

Local-first developer memory system — persistent, structured knowledge for AI coding tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use clap::Parser;
use std::path::PathBuf;

#[derive(Debug, Parser)]
#[command(name = "spool-mcp", version, about = "spool lifecycle MCP server")]
struct McpCli {
    #[arg(long)]
    config: PathBuf,
    #[arg(long)]
    daemon_bin: Option<PathBuf>,
}

fn main() -> anyhow::Result<()> {
    let cli = McpCli::parse();
    spool::mcp::serve_stdio(cli.config.as_path(), cli.daemon_bin.as_deref())
}