Skip to content

Commit 88e2b46

Browse files
authored
Add FinalApproval — human-in-the-loop approval gate for AI agents (#111)
Signed-off-by: Patrick McCurley <patrick.mccurley@toptal.com>
1 parent 2b662e3 commit 88e2b46

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "ai.finalapproval-mcp-npx",
4+
"name": "FinalApproval (npx)",
5+
"alias": "finalapproval",
6+
"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.",
7+
"icon": "https://finalapproval.ai/favicon.ico",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"productivity"
12+
],
13+
"tags": [
14+
"approval",
15+
"human-in-the-loop",
16+
"agent-safety",
17+
"webhook",
18+
"governance"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@finalapproval/mcp-server"
26+
],
27+
"env": {
28+
"FINALAPPROVAL_API_KEY": "${input:FINALAPPROVAL_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "FINALAPPROVAL_API_KEY",
34+
"label": "FinalApproval API Key",
35+
"description": "Channel API key from your FinalApproval workspace (starts with fa_).",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "fa_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
40+
"obtain": {
41+
"url": "https://finalapproval.ai",
42+
"instructions": "1. Sign up at finalapproval.ai\n2. Create a channel\n3. Copy the channel API key (starts with fa_)",
43+
"button_label": "Get API Key"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create a channel at finalapproval.ai and copy its API key."
52+
},
53+
"contributor": {
54+
"name": "FinalApproval",
55+
"github": "finalapproval",
56+
"url": "https://finalapproval.ai"
57+
},
58+
"links": {
59+
"repository": "https://github.com/finalapproval/final-approval-mcp",
60+
"homepage": "https://finalapproval.ai",
61+
"documentation": "https://github.com/finalapproval/final-approval-mcp#readme"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
}
72+
}

0 commit comments

Comments
 (0)