forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools-manifest.json
More file actions
77 lines (77 loc) · 1.82 KB
/
Copy pathtools-manifest.json
File metadata and controls
77 lines (77 loc) · 1.82 KB
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
{
"api_name": "ucp",
"base_url": "https://api.psp.example.com",
"description": "CLI for ucp (generated from docs)",
"mcp_ready": "full",
"http_transport": "standard",
"auth": {
"type": "bearer_token",
"header": "Authorization",
"format": "Bearer {API_TOKEN}",
"env_vars": [
"API_TOKEN"
],
"env_var_specs": [
{
"name": "API_TOKEN",
"kind": "per_call",
"required": true,
"sensitive": true,
"inferred": true
}
]
},
"required_headers": [],
"tools": [
{
"name": "checkout_create_checkout",
"description": "POST /checkout. Optional: version, spec, schema (plus 4 more).",
"method": "POST",
"path": "/checkout",
"params": [
{
"name": "version",
"type": "string",
"location": "body",
"description": "The version parameter"
},
{
"name": "spec",
"type": "string",
"location": "body",
"description": "The spec parameter"
},
{
"name": "schema",
"type": "string",
"location": "body",
"description": "The schema parameter"
},
{
"name": "id",
"type": "string",
"location": "body",
"description": "The id parameter"
},
{
"name": "config",
"type": "object",
"location": "body",
"description": "The config parameter"
},
{
"name": "transport",
"type": "string",
"location": "body",
"description": "The transport parameter"
},
{
"name": "endpoint",
"type": "string",
"location": "body",
"description": "The endpoint parameter"
}
]
}
]
}