tcl-mcp-server 0.1.2

A Model Context Protocol (MCP) server that provides TCL (Tool Command Language) execution capabilities with namespace-based tool management and versioning.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Expose modules for testing
pub mod advanced_tools;
pub mod capabilities;
pub mod mcp_client;
pub mod mcp_persistence;
pub mod namespace;
pub mod path_format;
pub mod persistence;
pub mod platform_dirs;
pub mod server;
pub mod tcl_executor;
pub mod tcl_runtime;
pub mod tcl_tools;
pub mod tool_discovery;
pub mod tool_registry;