-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.36 KB
/
Copy pathmanifest.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"manifest_version": "0.4",
"name": "CompanyCam API",
"version": "0.0.0",
"description": "MCP connector for the CompanyCam API",
"author": {
"name": "Ry Racherbaumer"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rygine/companycam-mcp-server.git"
},
"support": "https://github.com/rygine/companycam-mcp-server/issues",
"keywords": ["companycam", "api", "mcp"],
"server": {
"type": "node",
"entry_point": "server/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/server/index.js", "--stdio"],
"env": {
"COMPANYCAM_API_TOKEN": "${user_config.api_token}",
"COMPANYCAM_USER_EMAIL": "${user_config.user_email}"
}
}
},
"user_config": {
"api_token": {
"type": "string",
"title": "CompanyCam Access Token",
"description": "Token for accessing the CompanyCam API. Requires a Pro, Premium, or Elite plan.",
"required": true,
"sensitive": true
},
"user_email": {
"type": "string",
"title": "CompanyCam User Email (optional)",
"description": "Attributes created records to this CompanyCam user via the X-CompanyCam-User header. Leave blank to omit.",
"required": false
}
},
"compatibility": {
"platforms": ["darwin", "win32"],
"runtimes": {
"node": ">=18.0.0"
}
}
}