Skip to content

Commit f5c2da4

Browse files
committed
chore: mcp server update
1 parent 695e5d4 commit f5c2da4

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ Use this for debugging, monitoring application behavior, and troubleshooting iss
747747
- `virtualMachineId`: Virtual Machine ID (required)
748748
- `projectName`: Docker Compose project name using alphanumeric characters, dashes, and underscores only (required)
749749

750-
### VPS_restartAProjectV1
750+
### VPS_restartProjectV1
751751

752752
Restarts all services in a Docker Compose project by stopping and starting containers in the correct dependency order.
753753

@@ -763,7 +763,7 @@ Use this to apply configuration changes or recover from service failures.
763763
- `virtualMachineId`: Virtual Machine ID (required)
764764
- `projectName`: Docker Compose project name using alphanumeric characters, dashes, and underscores only (required)
765765

766-
### VPS_startAProjectV1
766+
### VPS_startProjectV1
767767

768768
Starts all services in a Docker Compose project that are currently stopped.
769769

@@ -779,7 +779,7 @@ Use this to resume a project that was previously stopped or to start services af
779779
- `virtualMachineId`: Virtual Machine ID (required)
780780
- `projectName`: Docker Compose project name using alphanumeric characters, dashes, and underscores only (required)
781781

782-
### VPS_stopAProjectV1
782+
### VPS_stopProjectV1
783783

784784
Stops all running services in a Docker Compose project while preserving container configurations and data volumes.
785785

@@ -795,7 +795,7 @@ Use this to temporarily halt a project without removing data or configurations.
795795
- `virtualMachineId`: Virtual Machine ID (required)
796796
- `projectName`: Docker Compose project name using alphanumeric characters, dashes, and underscores only (required)
797797

798-
### VPS_updateAProjectV1
798+
### VPS_updateProjectV1
799799

800800
Updates a Docker Compose project by pulling the latest image versions and recreating containers with new configurations.
801801

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hostinger-api-mcp",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "MCP server for Hostinger API",
55
"repository": {
66
"type": "git",

server.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ const TOOLS = [
12151215
]
12161216
},
12171217
{
1218-
"name": "VPS_restartAProjectV1",
1218+
"name": "VPS_restartProjectV1",
12191219
"description": "Restarts all services in a Docker Compose project by stopping and starting containers in the correct dependency order. \n\nThis operation preserves data volumes and network configurations while refreshing the running containers. \n\nUse this to apply configuration changes or recover from service failures.",
12201220
"method": "POST",
12211221
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/restart",
@@ -1243,7 +1243,7 @@ const TOOLS = [
12431243
]
12441244
},
12451245
{
1246-
"name": "VPS_startAProjectV1",
1246+
"name": "VPS_startProjectV1",
12471247
"description": "Starts all services in a Docker Compose project that are currently stopped. \n\nThis operation brings up containers in the correct dependency order as defined in the compose file. \n\nUse this to resume a project that was previously stopped or to start services after a system reboot.",
12481248
"method": "POST",
12491249
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/start",
@@ -1271,7 +1271,7 @@ const TOOLS = [
12711271
]
12721272
},
12731273
{
1274-
"name": "VPS_stopAProjectV1",
1274+
"name": "VPS_stopProjectV1",
12751275
"description": "Stops all running services in a Docker Compose project while preserving container configurations and data volumes. \n\nThis operation gracefully shuts down containers in reverse dependency order. \n\nUse this to temporarily halt a project without removing data or configurations.",
12761276
"method": "POST",
12771277
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/stop",
@@ -1299,7 +1299,7 @@ const TOOLS = [
12991299
]
13001300
},
13011301
{
1302-
"name": "VPS_updateAProjectV1",
1302+
"name": "VPS_updateProjectV1",
13031303
"description": "Updates a Docker Compose project by pulling the latest image versions and recreating containers with new configurations. \n\nThis operation preserves data volumes while applying changes from the compose file. \n\nUse this to deploy application updates, apply configuration changes, or refresh container images to their latest versions.",
13041304
"method": "POST",
13051305
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/update",
@@ -2769,7 +2769,7 @@ const SECURITY_SCHEMES = {
27692769

27702770
/**
27712771
* MCP Server for Hostinger API
2772-
* Generated from OpenAPI spec version 0.0.94
2772+
* Generated from OpenAPI spec version 0.0.95
27732773
*/
27742774
class MCPServer {
27752775
constructor() {
@@ -2787,7 +2787,7 @@ class MCPServer {
27872787
this.server = new Server(
27882788
{
27892789
name: "hostinger-api-mcp",
2790-
version: "0.1.4",
2790+
version: "0.1.5",
27912791
},
27922792
{
27932793
capabilities: {
@@ -2812,7 +2812,7 @@ class MCPServer {
28122812
});
28132813
}
28142814

2815-
headers['User-Agent'] = 'hostinger-mcp-server/0.1.4';
2815+
headers['User-Agent'] = 'hostinger-mcp-server/0.1.5';
28162816

28172817
return headers;
28182818
}

server.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ const TOOLS: OpenApiTool[] = [
12321232
]
12331233
},
12341234
{
1235-
"name": "VPS_restartAProjectV1",
1235+
"name": "VPS_restartProjectV1",
12361236
"description": "Restarts all services in a Docker Compose project by stopping and starting containers in the correct dependency order. \n\nThis operation preserves data volumes and network configurations while refreshing the running containers. \n\nUse this to apply configuration changes or recover from service failures.",
12371237
"method": "POST",
12381238
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/restart",
@@ -1260,7 +1260,7 @@ const TOOLS: OpenApiTool[] = [
12601260
]
12611261
},
12621262
{
1263-
"name": "VPS_startAProjectV1",
1263+
"name": "VPS_startProjectV1",
12641264
"description": "Starts all services in a Docker Compose project that are currently stopped. \n\nThis operation brings up containers in the correct dependency order as defined in the compose file. \n\nUse this to resume a project that was previously stopped or to start services after a system reboot.",
12651265
"method": "POST",
12661266
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/start",
@@ -1288,7 +1288,7 @@ const TOOLS: OpenApiTool[] = [
12881288
]
12891289
},
12901290
{
1291-
"name": "VPS_stopAProjectV1",
1291+
"name": "VPS_stopProjectV1",
12921292
"description": "Stops all running services in a Docker Compose project while preserving container configurations and data volumes. \n\nThis operation gracefully shuts down containers in reverse dependency order. \n\nUse this to temporarily halt a project without removing data or configurations.",
12931293
"method": "POST",
12941294
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/stop",
@@ -1316,7 +1316,7 @@ const TOOLS: OpenApiTool[] = [
13161316
]
13171317
},
13181318
{
1319-
"name": "VPS_updateAProjectV1",
1319+
"name": "VPS_updateProjectV1",
13201320
"description": "Updates a Docker Compose project by pulling the latest image versions and recreating containers with new configurations. \n\nThis operation preserves data volumes while applying changes from the compose file. \n\nUse this to deploy application updates, apply configuration changes, or refresh container images to their latest versions.",
13211321
"method": "POST",
13221322
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/update",
@@ -2786,7 +2786,7 @@ const SECURITY_SCHEMES: Record<string, SecurityScheme> = {
27862786

27872787
/**
27882788
* MCP Server for Hostinger API
2789-
* Generated from OpenAPI spec version 0.0.94
2789+
* Generated from OpenAPI spec version 0.0.95
27902790
*/
27912791
class MCPServer {
27922792
private server: Server;
@@ -2808,7 +2808,7 @@ class MCPServer {
28082808
this.server = new Server(
28092809
{
28102810
name: "hostinger-api-mcp",
2811-
version: "0.1.4",
2811+
version: "0.1.5",
28122812
},
28132813
{
28142814
capabilities: {
@@ -2833,7 +2833,7 @@ class MCPServer {
28332833
});
28342834
}
28352835

2836-
headers['User-Agent'] = 'hostinger-mcp-server/0.1.4';
2836+
headers['User-Agent'] = 'hostinger-mcp-server/0.1.5';
28372837

28382838
return headers;
28392839
}

0 commit comments

Comments
 (0)