@172ai/containers-mcp-server 1.0.22 → 1.0.23
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 +36 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 172.ai Container Management MCP Server
|
|
2
2
|
|
|
3
|
-
A **Model Context Protocol (MCP) server** that provides AI assistants with access to the 172.ai container management platform. This server exposes powerful tools for managing containers, builds, files, and capabilities through a standardized MCP interface, enabling natural language interactions with your containerized applications.
|
|
3
|
+
A **Model Context Protocol (MCP) server** that provides AI assistants with access to the 172.ai container management platform. This server exposes powerful tools for managing containers, builds, executions, files, and capabilities through a standardized MCP interface, enabling natural language interactions with your containerized applications.
|
|
4
4
|
|
|
5
5
|
🌐 **Live Documentation**: [https://172.ai/#/mcp](https://172.ai/#/mcp)
|
|
6
6
|
|
|
@@ -45,6 +45,16 @@ containers-mcp-server
|
|
|
45
45
|
- **Update Files**: Modify existing file contents
|
|
46
46
|
- **Delete Files**: Remove files from containers
|
|
47
47
|
|
|
48
|
+
### Container Execution Management
|
|
49
|
+
- **Start Execution**: Deploy and run containers with configurable duration
|
|
50
|
+
- **Stop Execution**: Stop running container executions
|
|
51
|
+
- **Get Execution Status**: Check current execution status and progress
|
|
52
|
+
- **List Executions**: View active container executions for the user
|
|
53
|
+
- **Get Execution Progress**: Monitor detailed execution progress and logs
|
|
54
|
+
- **Get Execution Logs**: Access real-time execution logs and debugging info
|
|
55
|
+
- **Extend Execution**: Extend the duration of running executions
|
|
56
|
+
- **Get Execution History**: View complete execution history for containers
|
|
57
|
+
|
|
48
58
|
### Capability Management
|
|
49
59
|
- **List Capabilities**: View available system capabilities
|
|
50
60
|
- **Get Capability Details**: Access detailed capability information
|
|
@@ -165,6 +175,16 @@ Once connected, you can use these tools in your AI conversations:
|
|
|
165
175
|
- `get_build_status` - Check build progress
|
|
166
176
|
- `list_builds` - View build history
|
|
167
177
|
|
|
178
|
+
#### Execution Operations
|
|
179
|
+
- `start_execution` - Deploy and run containers
|
|
180
|
+
- `stop_execution` - Stop running container executions
|
|
181
|
+
- `get_execution_status` - Check execution status and progress
|
|
182
|
+
- `list_executions` - List active container executions
|
|
183
|
+
- `get_execution_progress` - Monitor execution progress with logs
|
|
184
|
+
- `get_execution_logs` - Access real-time execution logs
|
|
185
|
+
- `extend_execution` - Extend duration of running executions
|
|
186
|
+
- `get_execution_history` - View execution history for containers
|
|
187
|
+
|
|
168
188
|
#### File Operations
|
|
169
189
|
- `list_container_files` - Browse container files
|
|
170
190
|
- `get_file_content` - Read file contents
|
|
@@ -185,6 +205,21 @@ await getContainer({ containerId: 'container-123' });
|
|
|
185
205
|
// Build a container
|
|
186
206
|
await buildContainer({ containerId: 'container-123' });
|
|
187
207
|
|
|
208
|
+
// Deploy and run a container
|
|
209
|
+
await startExecution({
|
|
210
|
+
containerId: 'container-123',
|
|
211
|
+
durationDays: 7
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
// Check execution status
|
|
215
|
+
await getExecutionStatus({ containerId: 'container-123' });
|
|
216
|
+
|
|
217
|
+
// List all active executions
|
|
218
|
+
await listExecutions({ limit: 20 });
|
|
219
|
+
|
|
220
|
+
// Stop a running container
|
|
221
|
+
await stopExecution({ containerId: 'container-123' });
|
|
222
|
+
|
|
188
223
|
// Upload a file
|
|
189
224
|
await uploadFile({
|
|
190
225
|
containerId: 'container-123',
|
package/package.json
CHANGED