Skip to content

Commit 695e5d4

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

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ Use this to inspect project settings, review the compose file, or check the over
680680
- `virtualMachineId`: Virtual Machine ID (required)
681681
- `projectName`: Docker Compose project name using alphanumeric characters, dashes, and underscores only (required)
682682

683-
### VPS_deleteAProjectV1
683+
### VPS_deleteProjectV1
684684

685685
Completely removes a Docker Compose project from the virtual machine, stopping all containers and cleaning up
686686
associated resources including networks, volumes, and images.
@@ -712,7 +712,7 @@ Use this to get an overview of all Docker projects on your VPS instance.
712712

713713
- `virtualMachineId`: Virtual Machine ID (required)
714714

715-
### VPS_createAProjectV1
715+
### VPS_createNewProjectV1
716716

717717
Deploy new project from docker-compose.yaml contents or download contents from URL.
718718

package-lock.json

Lines changed: 2 additions & 2 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.3",
3+
"version": "0.1.4",
44
"description": "MCP server for Hostinger API",
55
"repository": {
66
"type": "git",

server.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ const TOOLS = [
11031103
]
11041104
},
11051105
{
1106-
"name": "VPS_deleteAProjectV1",
1106+
"name": "VPS_deleteProjectV1",
11071107
"description": "Completely removes a Docker Compose project from the virtual machine, stopping all containers and cleaning up \nassociated resources including networks, volumes, and images. \n\nThis operation is irreversible and will delete all project data. \n\nUse this when you want to permanently remove a project and free up system resources.",
11081108
"method": "DELETE",
11091109
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/down",
@@ -1154,7 +1154,7 @@ const TOOLS = [
11541154
]
11551155
},
11561156
{
1157-
"name": "VPS_createAProjectV1",
1157+
"name": "VPS_createNewProjectV1",
11581158
"description": "Deploy new project from docker-compose.yaml contents or download contents from URL. \n\nURL can be Github repository url in format https://github.com/[user]/[repo] and it will be automatically resolved to \ndocker-compose.yaml file in master branch. Any other URL provided must return docker-compose.yaml file contents.\n\nIf project already exists, it will be replaced.",
11591159
"method": "POST",
11601160
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker",
@@ -2769,7 +2769,7 @@ const SECURITY_SCHEMES = {
27692769

27702770
/**
27712771
* MCP Server for Hostinger API
2772-
* Generated from OpenAPI spec version 0.0.93
2772+
* Generated from OpenAPI spec version 0.0.94
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.3",
2790+
version: "0.1.4",
27912791
},
27922792
{
27932793
capabilities: {
@@ -2812,7 +2812,7 @@ class MCPServer {
28122812
});
28132813
}
28142814

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

28172817
return headers;
28182818
}

server.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ const TOOLS: OpenApiTool[] = [
11201120
]
11211121
},
11221122
{
1123-
"name": "VPS_deleteAProjectV1",
1123+
"name": "VPS_deleteProjectV1",
11241124
"description": "Completely removes a Docker Compose project from the virtual machine, stopping all containers and cleaning up \nassociated resources including networks, volumes, and images. \n\nThis operation is irreversible and will delete all project data. \n\nUse this when you want to permanently remove a project and free up system resources.",
11251125
"method": "DELETE",
11261126
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/down",
@@ -1171,7 +1171,7 @@ const TOOLS: OpenApiTool[] = [
11711171
]
11721172
},
11731173
{
1174-
"name": "VPS_createAProjectV1",
1174+
"name": "VPS_createNewProjectV1",
11751175
"description": "Deploy new project from docker-compose.yaml contents or download contents from URL. \n\nURL can be Github repository url in format https://github.com/[user]/[repo] and it will be automatically resolved to \ndocker-compose.yaml file in master branch. Any other URL provided must return docker-compose.yaml file contents.\n\nIf project already exists, it will be replaced.",
11761176
"method": "POST",
11771177
"path": "/api/vps/v1/virtual-machines/{virtualMachineId}/docker",
@@ -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.93
2789+
* Generated from OpenAPI spec version 0.0.94
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.3",
2811+
version: "0.1.4",
28122812
},
28132813
{
28142814
capabilities: {
@@ -2833,7 +2833,7 @@ class MCPServer {
28332833
});
28342834
}
28352835

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

28382838
return headers;
28392839
}

0 commit comments

Comments
 (0)