641a19e736
Integrates the MCP server functionality into the AST tool binary. This allows the tool to act as a server for LLM integration, enabling communication over stdio. The server can list available bindings and execute scripts.
12 lines
194 B
Rust
12 lines
194 B
Rust
pub mod closure;
|
|
pub mod compiler;
|
|
pub mod diagnostics;
|
|
pub mod environment;
|
|
pub mod lexer;
|
|
pub mod mcp_server;
|
|
pub mod nodes;
|
|
pub mod parser;
|
|
pub mod rtl;
|
|
pub mod types;
|
|
pub mod vm;
|