An MCP server that gives agents a sandboxed Lisp REPL(andreasronge.github.io)
andreasronge.github.io
An MCP server that gives agents a sandboxed Lisp REPL
https://andreasronge.github.io/ptc_runner/the-right-tool-for-code-mode.html
https://andreasronge.github.io/ptc_runner/the-right-tool-for-code-mode.html
The main idea is that an agent should be able to explore MCP tools more like a developer explores an API from a REPL, instead of having every schema, tool response, and intermediate result pushed into the model context.
Example (done over multiple REPL sessions):
The reason I built a small custom Clojure-like language instead of using Python/JS is so I can fit the needs of the LLM: easy to sandbox, give good feedback to LLM as well as operational (handle many concurrent low latency stateful connections)
https://github.com/andreasronge/ptc_runner/blob/main/mcp_ser...