init MCP server

This commit is contained in:
Travis Shears 2026-02-28 19:47:00 +01:00
parent fff03fa0d5
commit 8ea0eee299
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
11 changed files with 253 additions and 21 deletions

View file

@ -12,14 +12,14 @@ Interactive elements are powered by [Gum](https://github.com/charmbracelet/gum).
To run commands:
```shell
$ bb -m cli-cms.main create
$ bb -m cli.main create
```
Or to play around and call individual functions using the REPL:
```shell
$ rlwrap bb repl
user=> (require '[cli-cms.create :as command])
user=> (require '[cli.create :as command])
user=> (def mock-snippet {:title "mock snippet from repl" :slug "mock" :tags '("mock") :markdown "# This is a mock"})
#'user/mock-snippet
user=> (command/create-snippet mock-snippet)