-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathai.finalapproval-mcp-npx.json
More file actions
72 lines (72 loc) · 2.05 KB
/
Copy pathai.finalapproval-mcp-npx.json
File metadata and controls
72 lines (72 loc) · 2.05 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
{
"$schema": "../schemas/server-definition.schema.json",
"id": "ai.finalapproval-mcp-npx",
"name": "FinalApproval (npx)",
"alias": "finalapproval",
"description": "Human-in-the-loop approval gate for AI agents. Your agent calls submit_approval before any irreversible action; a human reviews on a branded page and a signed webhook fires back with the decision.",
"logo": "https://finalapproval.ai/favicon.ico",
"schema_version": "2.1",
"categories": [
"developer-tools",
"productivity"
],
"tags": [
"approval",
"human-in-the-loop",
"agent-safety",
"webhook",
"governance"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@finalapproval/mcp-server"
],
"env": {
"FINALAPPROVAL_API_KEY": "${input:FINALAPPROVAL_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "FINALAPPROVAL_API_KEY",
"label": "FinalApproval API Key",
"description": "Channel API key from your FinalApproval workspace (starts with fa_).",
"type": "text",
"required": true,
"secret": true,
"placeholder": "fa_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://finalapproval.ai",
"instructions": "1. Sign up at finalapproval.ai\n2. Create a channel\n3. Copy the channel API key (starts with fa_)",
"button_label": "Get API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a channel at finalapproval.ai and copy its API key."
},
"contributor": {
"name": "FinalApproval",
"github": "finalapproval",
"url": "https://finalapproval.ai"
},
"links": {
"repository": "https://github.com/finalapproval/final-approval-mcp",
"homepage": "https://finalapproval.ai",
"documentation": "https://github.com/finalapproval/final-approval-mcp#readme"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}