AtlatestRepositorysigil-mcp

sigil-mcp / treepackage.sgl

1;;; sigil-mcp - Library for building Model Context Protocol servers in Sigil
2;;;
3;;; Provides the server loop, JSON-RPC 2.0 framing, and channel-based
4;;; message routing primitives so any Sigil project can expose tools
5;;; and resources to MCP clients. sigil-cli ships a built-in dev-tools
6;;; server on top of this library, invoked via `sigil mcp serve`.
7
8(package
9 name: "sigil-mcp"
10 version: "0.16.5"
11 sigil: "^0.16"
12 description: "Library for building MCP servers in Sigil"
13 url: "https://codeberg.org/sigil/sigil-mcp"
14 license: "BSD-3-Clause"
15 authors: (list "David Wilson <[email protected]>")
17 dependencies: (list
18 (from-git url: "codeberg:sigil/sigil-json" version: "^0.16")
19 (from-git url: "codeberg:sigil/sigil-log" version: "^0.16")
20 (from-git url: "codeberg:sigil/sigil-nrepl" version: "^0.16")))