-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathmanifest.json
More file actions
63 lines (63 loc) · 2.09 KB
/
manifest.json
File metadata and controls
63 lines (63 loc) · 2.09 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
{
"manifest_version": "0.3",
"name": "autotask-mcp",
"version": "2.2.3",
"display_name": "Autotask MCP Server",
"description": "MCP server for Kaseya Autotask PSA - access companies, contacts, tickets, and time entries through AI assistants",
"long_description": "Provides AI assistants with structured access to your Kaseya Autotask PSA data. Search and manage companies, contacts, tickets, time entries, and more through the Model Context Protocol. Features intelligent caching, ID-to-name resolution, and comprehensive error handling.",
"author": {
"name": "Aaron Sachs",
"url": "https://github.com/asachs01"
},
"repository": {
"type": "git",
"url": "https://github.com/wyre-technology/autotask-mcp"
},
"homepage": "https://github.com/wyre-technology/autotask-mcp",
"license": "MIT",
"keywords": ["autotask", "psa", "kaseya", "tickets", "msp", "it-management"],
"server": {
"type": "node",
"entry_point": "dist/entry.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/entry.js"],
"env": {
"AUTOTASK_USERNAME": "${user_config.autotask_username}",
"AUTOTASK_SECRET": "${user_config.autotask_secret}",
"AUTOTASK_INTEGRATION_CODE": "${user_config.autotask_integration_code}",
"MCP_TRANSPORT": "stdio"
}
}
},
"tools_generated": true,
"user_config": {
"autotask_username": {
"type": "string",
"title": "Autotask Username",
"description": "Your Autotask API username (email address)",
"required": true
},
"autotask_secret": {
"type": "string",
"title": "Autotask API Secret",
"description": "Your Autotask API secret key",
"required": true,
"sensitive": true
},
"autotask_integration_code": {
"type": "string",
"title": "Autotask Integration Code",
"description": "Your Autotask integration code",
"required": true,
"sensitive": true
}
},
"compatibility": {
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">=18.0.0"
},
"claude_desktop": ">=0.10.0"
}
}