feat: add mcp server

This commit is contained in:
2026-03-01 00:06:32 +01:00
parent 6842e9009a
commit c006f8236c
4 changed files with 279 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ pub async fn run(cmd: Command, ctx: &Ctx<'_>) -> Result<()> {
Command::Remove(args) => remove(ctx, args).await,
Command::Tags => tags(ctx).await,
Command::Purge => purge(ctx).await,
Command::McpServe => crate::mcp::serve(ctx.pool).await,
}
}