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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
use anyhow::{anyhow, Result};
use serde::{Deserialize, Serialize};
use tokio::sync::{mpsc, oneshot};
use tracing::info;

use crate::tcl_executor::TclCommand;

use crate::mcp_client::McpServerConfig;
use crate::namespace::ToolPath;

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolDefinition {
    pub path: ToolPath,
    pub description: String,
    pub script: String,
    pub parameters: Vec<ParameterDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ParameterDefinition {
    pub name: String,
    pub description: String,
    pub required: bool,
    pub type_name: String,
}

#[derive(Clone)]
pub struct TclToolBox {
    executor: mpsc::Sender<TclCommand>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TclExecuteRequest {
    /// TCL script to execute
    pub script: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TclToolAddRequest {
    /// User namespace (required for user tools)
    pub user: String,
    /// Package name (required for user tools)
    pub package: String,
    /// Name of the new tool
    pub name: String,
    /// Version of the tool (defaults to "latest")
    #[serde(default = "default_version")]
    pub version: String,
    /// Description of what the tool does
    pub description: String,
    /// TCL script that implements the tool
    pub script: String,
    /// Parameters that the tool accepts
    #[serde(default)]
    pub parameters: Vec<ParameterDefinition>,
}

fn default_version() -> String {
    "latest".to_string()
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TclToolRemoveRequest {
    /// Full tool path (e.g., "user__alice__utils__reverse_string__v1_0")
    pub path: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TclToolListRequest {
    /// Filter tools by namespace (optional)
    #[serde(default)]
    pub namespace: Option<String>,
    /// Filter tools by name pattern (optional)
    #[serde(default)]
    pub filter: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TclExecToolRequest {
    /// Tool path to execute (e.g., "bin__list_dir")
    pub tool_path: String,
    /// Parameters to pass to the tool
    #[serde(default)]
    pub params: serde_json::Value,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct McpExecuteRequest {
    /// MCP server ID to execute tool on
    pub server_id: String,
    /// Tool name to execute
    pub tool_name: String,
    /// Parameters to pass to the tool
    #[serde(default)]
    pub params: serde_json::Value,
    /// Response format (json, text, auto)
    #[serde(default = "default_response_format")]
    pub response_format: String,
    /// Timeout in milliseconds
    #[serde(default = "default_timeout")]
    pub timeout_ms: u64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct McpServerAddRequest {
    /// Unique identifier for the server
    pub id: String,
    /// Human-readable name for the server
    pub name: String,
    /// Optional description of the server
    pub description: Option<String>,
    /// Command to start the server
    pub command: String,
    /// Command line arguments
    #[serde(default)]
    pub args: Vec<String>,
    /// Environment variables
    #[serde(default)]
    pub env: std::collections::HashMap<String, String>,
    /// Whether to auto-start the server
    #[serde(default = "default_auto_start")]
    pub auto_start: bool,
    /// Connection timeout in milliseconds
    #[serde(default = "default_timeout")]
    pub timeout_ms: u64,
    /// Maximum retry attempts
    #[serde(default = "default_max_retries")]
    pub max_retries: u32,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct McpServerRemoveRequest {
    /// Server ID to remove
    pub server_id: String,
    /// Whether to force removal (kill process)
    #[serde(default)]
    pub force: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct McpDebugRequest {
    /// Server ID to debug
    pub server_id: String,
}

fn default_response_format() -> String {
    "auto".to_string()
}

fn default_timeout() -> u64 {
    30000
}

fn default_auto_start() -> bool {
    true
}

fn default_max_retries() -> u32 {
    3
}

impl TclToolBox {
    pub fn new(executor: mpsc::Sender<TclCommand>) -> Self {
        Self { executor }
    }

    pub async fn tcl_execute(&self, request: TclExecuteRequest) -> Result<String> {
        info!("Executing TCL script: {}", request.script);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::Execute {
                script: request.script,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn tcl_tool_add(&self, request: TclToolAddRequest) -> Result<String> {
        let path = ToolPath::user(
            &request.user,
            &request.package,
            &request.name,
            &request.version,
        );
        info!("Adding new TCL tool: {}", path);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::AddTool {
                path,
                description: request.description,
                script: request.script,
                parameters: request.parameters,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn tcl_tool_remove(&self, request: TclToolRemoveRequest) -> Result<String> {
        let path = ToolPath::parse(&request.path)?;
        info!("Removing TCL tool: {}", path);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::RemoveTool { path, response: tx })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn execute_custom_tool(
        &self,
        mcp_name: &str,
        params: serde_json::Value,
    ) -> Result<String> {
        let path = ToolPath::from_mcp_name(mcp_name)?;

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::ExecuteCustomTool {
                path,
                params,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn get_tool_definitions(&self) -> Result<Vec<ToolDefinition>> {
        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::GetToolDefinitions { response: tx })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        Ok(rx
            .await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?)
    }

    pub async fn initialize_persistence(&self) -> Result<String> {
        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::InitializePersistence { response: tx })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn exec_tool(&self, request: TclExecToolRequest) -> Result<String> {
        info!(
            "Executing tool: {} with params: {:?}",
            request.tool_path, request.params
        );

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::ExecTool {
                tool_path: request.tool_path,
                params: request.params,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn discover_tools(&self) -> Result<String> {
        info!("Discovering tools from filesystem");

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::DiscoverTools { response: tx })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn reload_tools(&self) -> Result<String> {
        info!("Reloading tools from persistent storage");

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::ReloadTools { response: tx })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    // MCP server management methods
    pub async fn mcp_execute(&self, request: McpExecuteRequest) -> Result<String> {
        info!(
            "Executing MCP tool: {}/{}",
            request.server_id, request.tool_name
        );

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::ExecuteMcp {
                server_id: request.server_id,
                tool_name: request.tool_name,
                params: request.params,
                response_format: request.response_format,
                timeout_ms: request.timeout_ms,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn mcp_add_server(&self, request: McpServerAddRequest) -> Result<String> {
        info!("Adding MCP server: {} ({})", request.id, request.name);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::AddMcpServer {
                config: McpServerConfig {
                    id: request.id,
                    name: request.name,
                    description: request.description,
                    command: request.command,
                    args: request.args,
                    env: request.env,
                    auto_start: request.auto_start,
                    timeout_ms: request.timeout_ms,
                    max_retries: request.max_retries,
                    created_at: chrono::Utc::now(),
                },
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn mcp_remove_server(&self, request: McpServerRemoveRequest) -> Result<String> {
        info!(
            "Removing MCP server: {} (force: {})",
            request.server_id, request.force
        );

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::RemoveMcpServer {
                server_id: request.server_id,
                force: request.force,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn mcp_list_servers(&self) -> Result<String> {
        info!("Listing MCP servers");

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::ListMcpServers { response: tx })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn get_mcp_server_tools(
        &self,
    ) -> Result<Vec<(String, Vec<crate::mcp_client::McpToolDefinition>)>> {
        info!("Getting MCP server tools");

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::GetMcpServerTools { response: tx })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn debug_connect_mcp(&self, request: McpDebugRequest) -> Result<String> {
        info!("Debug connecting to MCP server: {}", request.server_id);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::DebugConnectMcp {
                server_id: request.server_id,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn debug_disconnect_mcp(&self, request: McpDebugRequest) -> Result<String> {
        info!("Debug disconnecting from MCP server: {}", request.server_id);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::DebugDisconnectMcp {
                server_id: request.server_id,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn debug_mcp_info(&self, request: McpDebugRequest) -> Result<String> {
        info!("Getting debug info for MCP server: {}", request.server_id);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::DebugMcpServerInfo {
                server_id: request.server_id,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }

    pub async fn debug_ping_mcp(&self, request: McpDebugRequest) -> Result<String> {
        info!("Pinging MCP server: {}", request.server_id);

        let (tx, rx) = oneshot::channel();
        self.executor
            .send(TclCommand::DebugPingMcp {
                server_id: request.server_id,
                response: tx,
            })
            .await
            .map_err(|_| anyhow!("Failed to send command to executor"))?;

        rx.await
            .map_err(|_| anyhow!("Failed to receive response from executor"))?
    }
}