agent-tools-interface 0.7.8

Agent Tools Interface — secure CLI for AI agent tool execution
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
/// Integration tests for `ati provider add-mcp/list/remove` CLI commands.
///
/// Tests:
/// - HTTP transport manifest generation
/// - Stdio transport manifest generation
/// - Auth fields (bearer, header)
/// - Environment variables from --env KEY=VALUE
/// - List shows providers
/// - Remove deletes provider manifest (any type)
/// - Validation: --url required for http, --command required for stdio
use std::process::Command;
use tempfile::TempDir;

fn ati_bin() -> String {
    env!("CARGO_BIN_EXE_ati").to_string()
}

fn create_ati_dir() -> TempDir {
    let dir = TempDir::new().unwrap();
    std::fs::create_dir_all(dir.path().join("manifests")).unwrap();
    dir
}

// ---------------------------------------------------------------------------
// Test: add HTTP transport manifest
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_add_http() {
    let dir = create_ati_dir();

    let output = Command::new(ati_bin())
        .args([
            "provider",
            "add-mcp",
            "serpapi",
            "--transport",
            "http",
            "--url",
            "https://mcp.serpapi.com/mcp",
        ])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("Failed to execute ati");

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(output.status.success(), "Should succeed. stderr: {stderr}");

    // Verify manifest was created
    let manifest_path = dir.path().join("manifests/serpapi.toml");
    assert!(manifest_path.exists(), "Manifest file should exist");

    let content = std::fs::read_to_string(&manifest_path).unwrap();
    let parsed: toml::Value = toml::from_str(&content).unwrap();
    let provider = &parsed["provider"];

    assert_eq!(provider["name"].as_str().unwrap(), "serpapi");
    assert_eq!(provider["handler"].as_str().unwrap(), "mcp");
    assert_eq!(provider["mcp_transport"].as_str().unwrap(), "http");
    assert_eq!(
        provider["mcp_url"].as_str().unwrap(),
        "https://mcp.serpapi.com/mcp"
    );
    assert_eq!(provider["auth_type"].as_str().unwrap(), "none");
    assert_eq!(
        provider["description"].as_str().unwrap(),
        "serpapi MCP provider"
    );
}

// ---------------------------------------------------------------------------
// Test: add stdio transport manifest
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_add_stdio() {
    let dir = create_ati_dir();

    let output = Command::new(ati_bin())
        .args([
            "provider",
            "add-mcp",
            "github",
            "--transport",
            "stdio",
            "--command",
            "npx",
            "--args",
            "-y",
            "--args",
            "@modelcontextprotocol/server-github",
        ])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("Failed to execute ati");

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(output.status.success(), "Should succeed. stderr: {stderr}");

    let content = std::fs::read_to_string(dir.path().join("manifests/github.toml")).unwrap();
    let parsed: toml::Value = toml::from_str(&content).unwrap();
    let provider = &parsed["provider"];

    assert_eq!(provider["name"].as_str().unwrap(), "github");
    assert_eq!(provider["handler"].as_str().unwrap(), "mcp");
    assert_eq!(provider["mcp_transport"].as_str().unwrap(), "stdio");
    assert_eq!(provider["mcp_command"].as_str().unwrap(), "npx");

    let args: Vec<&str> = provider["mcp_args"]
        .as_array()
        .unwrap()
        .iter()
        .map(|v| v.as_str().unwrap())
        .collect();
    assert_eq!(args, vec!["-y", "@modelcontextprotocol/server-github"]);
}

// ---------------------------------------------------------------------------
// Test: add with bearer auth
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_add_with_auth() {
    let dir = create_ati_dir();

    let output = Command::new(ati_bin())
        .args([
            "provider",
            "add-mcp",
            "parallel",
            "--transport",
            "http",
            "--url",
            "https://search-mcp.parallel.ai/mcp",
            "--auth",
            "bearer",
            "--auth-key",
            "parallel_api_key",
        ])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("Failed to execute ati");

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(output.status.success(), "Should succeed. stderr: {stderr}");
    assert!(
        stderr.contains("parallel_api_key"),
        "Should hint about adding the key. stderr: {stderr}"
    );

    let content = std::fs::read_to_string(dir.path().join("manifests/parallel.toml")).unwrap();
    let parsed: toml::Value = toml::from_str(&content).unwrap();
    let provider = &parsed["provider"];

    assert_eq!(provider["auth_type"].as_str().unwrap(), "bearer");
    assert_eq!(
        provider["auth_key_name"].as_str().unwrap(),
        "parallel_api_key"
    );
}

// ---------------------------------------------------------------------------
// Test: add with --env KEY=VALUE
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_add_with_env() {
    let dir = create_ati_dir();

    let output = Command::new(ati_bin())
        .args([
            "provider",
            "add-mcp",
            "github",
            "--transport",
            "stdio",
            "--command",
            "npx",
            "--args",
            "-y",
            "--args",
            "@modelcontextprotocol/server-github",
            "--env",
            "GITHUB_PERSONAL_ACCESS_TOKEN=${github_token}",
        ])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("Failed to execute ati");

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(output.status.success(), "Should succeed. stderr: {stderr}");

    let content = std::fs::read_to_string(dir.path().join("manifests/github.toml")).unwrap();
    let parsed: toml::Value = toml::from_str(&content).unwrap();
    let provider = &parsed["provider"];

    let env = provider["mcp_env"].as_table().unwrap();
    assert_eq!(
        env["GITHUB_PERSONAL_ACCESS_TOKEN"].as_str().unwrap(),
        "${github_token}"
    );
}

// ---------------------------------------------------------------------------
// Test: list shows added MCPs
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_list() {
    let dir = create_ati_dir();

    // Add two MCP providers
    Command::new(ati_bin())
        .args([
            "provider",
            "add-mcp",
            "serpapi",
            "--transport",
            "http",
            "--url",
            "https://mcp.serpapi.com/mcp",
        ])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("add serpapi");

    Command::new(ati_bin())
        .args([
            "provider",
            "add-mcp",
            "github",
            "--transport",
            "stdio",
            "--command",
            "npx",
            "--args",
            "-y",
            "--args",
            "@modelcontextprotocol/server-github",
        ])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("add github");

    // List
    let output = Command::new(ati_bin())
        .args(["provider", "list"])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("list");

    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(
        output.status.success(),
        "Should succeed. stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
    assert!(
        stdout.contains("serpapi"),
        "Should list serpapi. stdout: {stdout}"
    );
    assert!(
        stdout.contains("github"),
        "Should list github. stdout: {stdout}"
    );
    assert!(
        stdout.contains("http"),
        "Should show http transport. stdout: {stdout}"
    );
    assert!(
        stdout.contains("stdio"),
        "Should show stdio transport. stdout: {stdout}"
    );
}

// ---------------------------------------------------------------------------
// Test: remove deletes MCP manifest
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_remove() {
    let dir = create_ati_dir();

    // Add
    Command::new(ati_bin())
        .args([
            "provider",
            "add-mcp",
            "serpapi",
            "--transport",
            "http",
            "--url",
            "https://mcp.serpapi.com/mcp",
        ])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("add serpapi");

    assert!(dir.path().join("manifests/serpapi.toml").exists());

    // Remove
    let output = Command::new(ati_bin())
        .args(["provider", "remove", "serpapi"])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("remove serpapi");

    assert!(
        output.status.success(),
        "Should succeed. stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
    assert!(
        !dir.path().join("manifests/serpapi.toml").exists(),
        "Manifest should be deleted"
    );
}

// ---------------------------------------------------------------------------
// Test: remove works for any provider type (not just MCP)
// ---------------------------------------------------------------------------

#[test]
fn test_provider_remove_works_for_any_type() {
    let dir = create_ati_dir();

    // Write a non-MCP (HTTP) manifest
    let http_manifest = r#"
[provider]
name = "example"
description = "Example API"
base_url = "https://api.example.com"
auth_type = "none"

[[tools]]
name = "search"
description = "Search"
endpoint = "/search"
method = "GET"
"#;
    std::fs::write(dir.path().join("manifests/example.toml"), http_manifest).unwrap();

    assert!(dir.path().join("manifests/example.toml").exists());

    let output = Command::new(ati_bin())
        .args(["provider", "remove", "example"])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("remove example");

    assert!(
        output.status.success(),
        "Should succeed for any provider type. stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
    // File should be deleted
    assert!(
        !dir.path().join("manifests/example.toml").exists(),
        "Manifest should be deleted"
    );
}

// ---------------------------------------------------------------------------
// Test: add requires --url for http transport
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_add_requires_url_for_http() {
    let dir = create_ati_dir();

    let output = Command::new(ati_bin())
        .args(["provider", "add-mcp", "broken", "--transport", "http"])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("Failed to execute ati");

    assert!(
        !output.status.success(),
        "Should fail without --url for http"
    );
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("--url"),
        "Error should mention --url. stderr: {stderr}"
    );
}

// ---------------------------------------------------------------------------
// Test: add requires --command for stdio transport
// ---------------------------------------------------------------------------

#[test]
fn test_mcp_add_requires_command_for_stdio() {
    let dir = create_ati_dir();

    let output = Command::new(ati_bin())
        .args(["provider", "add-mcp", "broken", "--transport", "stdio"])
        .env("ATI_DIR", dir.path().to_str().unwrap())
        .output()
        .expect("Failed to execute ati");

    assert!(
        !output.status.success(),
        "Should fail without --command for stdio"
    );
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("--command"),
        "Error should mention --command. stderr: {stderr}"
    );
}