tap-mcp 0.6.0

Model Context Protocol server for TAP Node functionality
Documentation
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
//! Agent management tools for TAP transactions

use super::schema;
use super::{error_text_response, success_text_response, ToolHandler};
use crate::error::{Error, Result};
use crate::mcp::protocol::{CallToolResult, Tool};
use crate::tap_integration::TapIntegration;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::sync::Arc;
use tap_msg::message::tap_message_trait::TapMessageBody;
use tap_msg::message::{AddAgents, Agent, RemoveAgent, ReplaceAgent};
use tracing::{debug, error};

/// Tool for adding agents to a transaction
pub struct AddAgentsTool {
    tap_integration: Arc<TapIntegration>,
}

/// Parameters for adding agents
#[derive(Debug, Deserialize)]
struct AddAgentsParams {
    agent_did: String, // The DID of the agent that will sign and send this message
    transaction_id: String,
    agents: Vec<AgentInfo>,
}

#[derive(Debug, Deserialize)]
struct AgentInfo {
    #[serde(rename = "@id")]
    id: String,
    role: String,
    #[serde(rename = "for")]
    for_party: String,
}

/// Response for adding agents
#[derive(Debug, Serialize)]
struct AddAgentsResponse {
    transaction_id: String,
    message_id: String,
    status: String,
    agents_added: usize,
    added_at: String,
}

impl AddAgentsTool {
    pub fn new(tap_integration: Arc<TapIntegration>) -> Self {
        Self { tap_integration }
    }

    fn tap_integration(&self) -> &TapIntegration {
        &self.tap_integration
    }
}

#[async_trait::async_trait]
impl ToolHandler for AddAgentsTool {
    async fn handle(&self, arguments: Option<Value>) -> Result<CallToolResult> {
        let params: AddAgentsParams = match arguments {
            Some(args) => serde_json::from_value(args)
                .map_err(|e| Error::invalid_parameter(format!("Invalid parameters: {}", e)))?,
            None => {
                return Ok(error_text_response(
                    "Missing required parameters".to_string(),
                ))
            }
        };

        debug!(
            "Adding {} agents to transaction: {}",
            params.agents.len(),
            params.transaction_id
        );

        // Create agents
        let agents: Vec<Agent> = params
            .agents
            .iter()
            .map(|agent_info| Agent::new(&agent_info.id, &agent_info.role, &agent_info.for_party))
            .collect();

        // Create add agents message
        let add_agents = AddAgents::new(&params.transaction_id, agents);

        // Validate the add agents message
        if let Err(e) = add_agents.validate() {
            return Ok(error_text_response(format!(
                "AddAgents validation failed: {}",
                e
            )));
        }

        // Create DIDComm message using the specified agent DID
        let didcomm_message = match add_agents.to_didcomm(&params.agent_did) {
            Ok(msg) => msg,
            Err(e) => {
                return Ok(error_text_response(format!(
                    "Failed to create DIDComm message: {}",
                    e
                )));
            }
        };

        // Determine recipient from the message
        let recipient_did = if !didcomm_message.to.is_empty() {
            didcomm_message.to[0].clone()
        } else {
            return Ok(error_text_response(
                "No recipient found for add agents message".to_string(),
            ));
        };

        debug!(
            "Sending add agents from {} to {} for transaction: {}",
            params.agent_did, recipient_did, params.transaction_id
        );

        // Send the message through the TAP node
        match self
            .tap_integration()
            .node()
            .send_message(params.agent_did.clone(), didcomm_message.clone())
            .await
        {
            Ok(packed_message) => {
                debug!(
                    "AddAgents message sent successfully to {}, packed message length: {}",
                    recipient_did,
                    packed_message.len()
                );

                let response = AddAgentsResponse {
                    transaction_id: params.transaction_id,
                    message_id: didcomm_message.id,
                    status: "sent".to_string(),
                    agents_added: add_agents.agents.len(),
                    added_at: chrono::Utc::now().to_rfc3339(),
                };

                let response_json = serde_json::to_string_pretty(&response).map_err(|e| {
                    Error::tool_execution(format!("Failed to serialize response: {}", e))
                })?;

                Ok(success_text_response(response_json))
            }
            Err(e) => {
                error!("Failed to send add agents message: {}", e);
                Ok(error_text_response(format!(
                    "Failed to send add agents message: {}",
                    e
                )))
            }
        }
    }

    fn get_definition(&self) -> Tool {
        Tool {
            name: "tap_add_agents".to_string(),
            description: "Adds agents to a TAP transaction using the AddAgents message (TAIP-5)"
                .to_string(),
            input_schema: schema::add_agents_schema(),
        }
    }
}

/// Tool for removing an agent from a transaction
pub struct RemoveAgentTool {
    tap_integration: Arc<TapIntegration>,
}

/// Parameters for removing an agent
#[derive(Debug, Deserialize)]
struct RemoveAgentParams {
    agent_did: String, // The DID of the agent that will sign and send this message
    transaction_id: String,
    agent_to_remove: String,
}

/// Response for removing an agent
#[derive(Debug, Serialize)]
struct RemoveAgentResponse {
    transaction_id: String,
    message_id: String,
    status: String,
    removed_agent: String,
    removed_at: String,
}

impl RemoveAgentTool {
    pub fn new(tap_integration: Arc<TapIntegration>) -> Self {
        Self { tap_integration }
    }

    fn tap_integration(&self) -> &TapIntegration {
        &self.tap_integration
    }
}

#[async_trait::async_trait]
impl ToolHandler for RemoveAgentTool {
    async fn handle(&self, arguments: Option<Value>) -> Result<CallToolResult> {
        let params: RemoveAgentParams = match arguments {
            Some(args) => serde_json::from_value(args)
                .map_err(|e| Error::invalid_parameter(format!("Invalid parameters: {}", e)))?,
            None => {
                return Ok(error_text_response(
                    "Missing required parameters".to_string(),
                ))
            }
        };

        debug!(
            "Removing agent {} from transaction: {}",
            params.agent_to_remove, params.transaction_id
        );

        // Create remove agent message
        let remove_agent = RemoveAgent::new(&params.transaction_id, &params.agent_to_remove);

        // Validate the remove agent message
        if let Err(e) = remove_agent.validate() {
            return Ok(error_text_response(format!(
                "RemoveAgent validation failed: {}",
                e
            )));
        }

        // Create DIDComm message using the specified agent DID
        let didcomm_message = match remove_agent.to_didcomm(&params.agent_did) {
            Ok(msg) => msg,
            Err(e) => {
                return Ok(error_text_response(format!(
                    "Failed to create DIDComm message: {}",
                    e
                )));
            }
        };

        // Determine recipient from the message
        let recipient_did = if !didcomm_message.to.is_empty() {
            didcomm_message.to[0].clone()
        } else {
            return Ok(error_text_response(
                "No recipient found for remove agent message".to_string(),
            ));
        };

        debug!(
            "Sending remove agent from {} to {} for transaction: {}",
            params.agent_did, recipient_did, params.transaction_id
        );

        // Send the message through the TAP node
        match self
            .tap_integration()
            .node()
            .send_message(params.agent_did.clone(), didcomm_message.clone())
            .await
        {
            Ok(packed_message) => {
                debug!(
                    "RemoveAgent message sent successfully to {}, packed message length: {}",
                    recipient_did,
                    packed_message.len()
                );

                let response = RemoveAgentResponse {
                    transaction_id: params.transaction_id,
                    message_id: didcomm_message.id,
                    status: "sent".to_string(),
                    removed_agent: params.agent_to_remove,
                    removed_at: chrono::Utc::now().to_rfc3339(),
                };

                let response_json = serde_json::to_string_pretty(&response).map_err(|e| {
                    Error::tool_execution(format!("Failed to serialize response: {}", e))
                })?;

                Ok(success_text_response(response_json))
            }
            Err(e) => {
                error!("Failed to send remove agent message: {}", e);
                Ok(error_text_response(format!(
                    "Failed to send remove agent message: {}",
                    e
                )))
            }
        }
    }

    fn get_definition(&self) -> Tool {
        Tool {
            name: "tap_remove_agent".to_string(),
            description:
                "Removes an agent from a TAP transaction using the RemoveAgent message (TAIP-5)"
                    .to_string(),
            input_schema: schema::remove_agent_schema(),
        }
    }
}

/// Tool for replacing an agent in a transaction
pub struct ReplaceAgentTool {
    tap_integration: Arc<TapIntegration>,
}

/// Parameters for replacing an agent
#[derive(Debug, Deserialize)]
struct ReplaceAgentParams {
    agent_did: String, // The DID of the agent that will sign and send this message
    transaction_id: String,
    original_agent: String,
    new_agent: AgentInfo,
}

/// Response for replacing an agent
#[derive(Debug, Serialize)]
struct ReplaceAgentResponse {
    transaction_id: String,
    message_id: String,
    status: String,
    old_agent: String,
    new_agent: String,
    replaced_at: String,
}

impl ReplaceAgentTool {
    pub fn new(tap_integration: Arc<TapIntegration>) -> Self {
        Self { tap_integration }
    }

    fn tap_integration(&self) -> &TapIntegration {
        &self.tap_integration
    }
}

#[async_trait::async_trait]
impl ToolHandler for ReplaceAgentTool {
    async fn handle(&self, arguments: Option<Value>) -> Result<CallToolResult> {
        let params: ReplaceAgentParams = match arguments {
            Some(args) => serde_json::from_value(args)
                .map_err(|e| Error::invalid_parameter(format!("Invalid parameters: {}", e)))?,
            None => {
                return Ok(error_text_response(
                    "Missing required parameters".to_string(),
                ))
            }
        };

        debug!(
            "Replacing agent {} with {} in transaction: {}",
            params.original_agent, params.new_agent.id, params.transaction_id
        );

        // Create new agent
        let replacement_agent = Agent::new(
            &params.new_agent.id,
            &params.new_agent.role,
            &params.new_agent.for_party,
        );

        // Create replace agent message
        let replace_agent = ReplaceAgent::new(
            &params.transaction_id,
            &params.original_agent,
            replacement_agent,
        );

        // Validate the replace agent message
        if let Err(e) = replace_agent.validate() {
            return Ok(error_text_response(format!(
                "ReplaceAgent validation failed: {}",
                e
            )));
        }

        // Create DIDComm message using the specified agent DID
        let didcomm_message = match replace_agent.to_didcomm(&params.agent_did) {
            Ok(msg) => msg,
            Err(e) => {
                return Ok(error_text_response(format!(
                    "Failed to create DIDComm message: {}",
                    e
                )));
            }
        };

        // Determine recipient from the message
        let recipient_did = if !didcomm_message.to.is_empty() {
            didcomm_message.to[0].clone()
        } else {
            return Ok(error_text_response(
                "No recipient found for replace agent message".to_string(),
            ));
        };

        debug!(
            "Sending replace agent from {} to {} for transaction: {}",
            params.agent_did, recipient_did, params.transaction_id
        );

        // Send the message through the TAP node
        match self
            .tap_integration()
            .node()
            .send_message(params.agent_did.clone(), didcomm_message.clone())
            .await
        {
            Ok(packed_message) => {
                debug!(
                    "ReplaceAgent message sent successfully to {}, packed message length: {}",
                    recipient_did,
                    packed_message.len()
                );

                let response = ReplaceAgentResponse {
                    transaction_id: params.transaction_id,
                    message_id: didcomm_message.id,
                    status: "sent".to_string(),
                    old_agent: params.original_agent,
                    new_agent: params.new_agent.id,
                    replaced_at: chrono::Utc::now().to_rfc3339(),
                };

                let response_json = serde_json::to_string_pretty(&response).map_err(|e| {
                    Error::tool_execution(format!("Failed to serialize response: {}", e))
                })?;

                Ok(success_text_response(response_json))
            }
            Err(e) => {
                error!("Failed to send replace agent message: {}", e);
                Ok(error_text_response(format!(
                    "Failed to send replace agent message: {}",
                    e
                )))
            }
        }
    }

    fn get_definition(&self) -> Tool {
        Tool {
            name: "tap_replace_agent".to_string(),
            description:
                "Replaces an agent in a TAP transaction using the ReplaceAgent message (TAIP-5)"
                    .to_string(),
            input_schema: schema::replace_agent_schema(),
        }
    }
}