-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathapp.json
More file actions
49 lines (48 loc) · 1.42 KB
/
app.json
File metadata and controls
49 lines (48 loc) · 1.42 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
{
"name": "Paragon MCP",
"description": "MCP server for Paragon's ActionKit. Provide your agent with hundreds of integration tools for providers like Slack, HubSpot, and Notion. Self-hosted and multi-tenant",
"keywords": [
"MCP",
"agents",
"tools"
],
"website": "https://useparagon.com",
"repository": "https://github.com/useparagon/paragon-mcp",
"logo": "https://raw.githubusercontent.com/useparagon/aws-on-prem/master/assets/paragon-logo-dark.png",
"scripts": {},
"env": {
"PROJECT_ID": {
"description": "Your Paragon Project ID. Refer to the Paragon docs for instructions on how to retrieve your Project ID and Signing Key",
"value": "project-id",
"required": true
},
"SIGNING_KEY": {
"description": "Your Paragon Signing Key. Refer to the Paragon docs for instructions on how to retrieve your Project ID and Signing Key",
"value": "signing-key",
"required": true
},
"MCP_SERVER_URL": {
"description": "URL of where your server is hosted. Used to send magic links to authenticate integrations.",
"value": "Your Heroku Domain URL",
"required": true
},
"NODE_ENV": {
"description": "node environment",
"value": "production",
"required": false
}
},
"formation": {
"web": {
"quantity": 1
}
},
"image": "heroku/nodejs",
"stack": "container",
"addons": [],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}