Add MCP server to AST tool

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.
This commit is contained in:
2026-03-25 14:03:22 +01:00
parent 6042415dfc
commit 641a19e736
6 changed files with 386 additions and 2 deletions
+1
View File
@@ -3,6 +3,7 @@ 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;