@octopusdeploy/mcp-server 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -3
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<picture>
|
|
2
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/
|
|
3
|
-
<source media="(prefers-color-scheme: light)" srcset="https://github.com/
|
|
4
|
-
<img alt="Octopus Deploy Logo" src="https://github.com/
|
|
2
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/octopusdeploy/mcp-server/blob/main/images/OctopusDeploy_Logo_DarkMode.png?raw=true">
|
|
3
|
+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/octopusdeploy/mcp-server/blob/main/images/OctopusDeploy_Logo_LightMode.png?raw=true">
|
|
4
|
+
<img alt="Octopus Deploy Logo" src="https://github.com/octopusdeploy/mcp-server/blob/main/images/OctopusDeploy_Logo_LightMode.png?raw=true" />
|
|
5
5
|
</picture>
|
|
6
6
|
|
|
7
7
|
# Octopus Deploy Official MCP Server
|
|
@@ -88,6 +88,7 @@ Available toolsets:
|
|
|
88
88
|
- **kubernetes** - Kubernetes operations
|
|
89
89
|
- **machines** - Deployment target operations
|
|
90
90
|
- **certificates** - Certificate operations
|
|
91
|
+
- **accounts** - Account operations
|
|
91
92
|
|
|
92
93
|
#### Read-Only Mode
|
|
93
94
|
The server runs in read-only mode by default for security. All current tools are read-only operations.
|
|
@@ -149,6 +150,10 @@ npx -y @octopusdeploy/mcp-server --toolsets all --read-only --server-url https:/
|
|
|
149
150
|
- `list_certificates`: List all certificates in a space with optional filtering
|
|
150
151
|
- `get_certificate`: Get detailed information about a specific certificate by its ID
|
|
151
152
|
|
|
153
|
+
### Accounts
|
|
154
|
+
- `list_accounts`: List all accounts in a space with optional filtering
|
|
155
|
+
- `get_accounts`: Get detailed information about a specific account by its ID
|
|
156
|
+
|
|
152
157
|
### Additional Tools
|
|
153
158
|
- `get_deployment_process`: Get deployment process by ID for projects or releases
|
|
154
159
|
- `get_branches`: Get Git branches for a version-controlled project (minimum supported version: `2021.2`)
|
package/package.json
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/OctopusDeploy/mcp-server/issues"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.2.
|
|
7
|
+
"version": "0.2.2",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"description": "The Octopus MCP Server provides your AI assistant with powerful tools that allow it to inspect, query, and diagnose problems within your Octopus instance.",
|
|
10
10
|
"main": "dist/index.js",
|
|
11
11
|
"module": "dist/index.js",
|
|
12
|
-
"bin":
|
|
12
|
+
"bin": {
|
|
13
|
+
"mcp-server": "dist/index.js"
|
|
14
|
+
},
|
|
13
15
|
"files": [
|
|
14
16
|
"dist/**/*"
|
|
15
17
|
],
|
|
@@ -27,7 +29,7 @@
|
|
|
27
29
|
"homepage": "https://github.com/OctopusDeploy/mcp-server#readme",
|
|
28
30
|
"repository": {
|
|
29
31
|
"type": "git",
|
|
30
|
-
"url": "https://github.com/OctopusDeploy/mcp-server.git"
|
|
32
|
+
"url": "git+https://github.com/OctopusDeploy/mcp-server.git"
|
|
31
33
|
},
|
|
32
34
|
"license": "Apache-2.0",
|
|
33
35
|
"publishConfig": {
|