My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.0)
2(name claude)
3(generate_opam_files true)
4
5(package
6 (name claude)
7 (synopsis "OCaml client library for Claude CLI")
8 (description "An Eio-based OCaml library for interacting with the Claude CLI using JSON streaming")
9 (depends
10 ocaml
11 dune
12 eio
13 fmt
14 logs
15 (jsont (>= 0.2.0))
16 (jsont_bytesrw (>= 0.2.0))
17 (alcotest :with-test)))
18
19(package
20 (name mcp)
21 (synopsis "Model Context Protocol (MCP) implementation in OCaml")
22 (description "An Eio-based OCaml library implementing the Model Context Protocol for connecting AI assistants with tools and data sources")
23 (depends
24 ocaml
25 dune
26 eio
27 fmt
28 logs
29 (jsont (>= 0.2.0))
30 (jsont_bytesrw (>= 0.2.0))
31 (alcotest :with-test)))