-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
77 lines (77 loc) · 2.25 KB
/
Copy pathmanifest.json
File metadata and controls
77 lines (77 loc) · 2.25 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
73
74
75
76
77
{
"manifest_version": "0.3",
"name": "kosli",
"display_name": "Kosli",
"version": "0.0.0-replaced-at-build-time",
"description": "Connect Claude to the Kosli API for change management, deployment tracking, and compliance evidence.",
"author": {
"name": "Kosli",
"url": "https://kosli.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kosli-dev/mcp-server.git"
},
"homepage": "https://kosli.com",
"documentation": "https://github.com/kosli-dev/mcp-server#readme",
"support": "https://github.com/kosli-dev/mcp-server/issues",
"icon": "assets/icon.png",
"license": "MIT",
"keywords": ["kosli", "compliance", "devops", "deployments", "environments", "change-management"],
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/index.js"],
"env": {
"KOSLI_API_TOKEN": "${user_config.api_token}",
"KOSLI_ORG": "${user_config.org}",
"KOSLI_BASE_URL": "${user_config.base_url}"
}
}
},
"tools": [
{
"name": "search_actions",
"description": "Search for available Kosli API actions by natural-language query"
},
{
"name": "execute_read_action",
"description": "Execute a read-only (GET) Kosli API action"
},
{
"name": "execute_write_action",
"description": "Execute a write (POST, PUT, PATCH, DELETE) Kosli API action"
}
],
"tools_generated": false,
"user_config": {
"api_token": {
"type": "string",
"title": "API Token",
"description": "Your Kosli API token (found at app.kosli.com under Settings → API Keys)",
"sensitive": true,
"required": true
},
"org": {
"type": "string",
"title": "Organization",
"description": "Your Kosli organization name",
"required": true
},
"base_url": {
"type": "string",
"title": "Base URL",
"description": "Kosli API base URL — EU: https://app.kosli.com, US: https://app.us.kosli.com, or your single-tenant endpoint",
"default": "https://app.kosli.com",
"required": false
}
},
"compatibility": {
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">=22.0.0"
}
}
}