Skip to content

Commit ca90f40

Browse files
committed
chore: mcp server update
1 parent 5761172 commit ca90f40

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Prices in catalog items is displayed as cents (without floating point), e.g: flo
130130
**Parameters**:
131131

132132
- `category`: Filter catalog items by category
133-
- `name`: Filter catalog items by name. Use `*` for wildcard search.
133+
- `name`: Filter catalog items by name. Use `*` for wildcard search, e.g. `.COM*` to find .com domain
134134

135135
### billing_createNewServiceOrderV1
136136

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.0.19",
3+
"version": "0.0.20",
44
"description": "MCP server for Hostinger API",
55
"repository": {
66
"type": "git",

server.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const TOOLS = [
3535
},
3636
"name": {
3737
"type": "string",
38-
"description": "Filter catalog items by name. Use `*` for wildcard search."
38+
"description": "Filter catalog items by name. Use `*` for wildcard search, e.g. `.COM*` to find .com domain"
3939
}
4040
},
4141
"required": []
@@ -2472,7 +2472,7 @@ const SECURITY_SCHEMES = {
24722472

24732473
/**
24742474
* MCP Server for Hostinger API
2475-
* Generated from OpenAPI spec version 0.0.44
2475+
* Generated from OpenAPI spec version 0.0.45
24762476
*/
24772477
class MCPServer {
24782478
constructor() {
@@ -2490,7 +2490,7 @@ class MCPServer {
24902490
this.server = new Server(
24912491
{
24922492
name: "hostinger-api-mcp",
2493-
version: "0.0.19",
2493+
version: "0.0.20",
24942494
},
24952495
{
24962496
capabilities: {
@@ -2515,7 +2515,7 @@ class MCPServer {
25152515
});
25162516
}
25172517

2518-
headers['User-Agent'] = 'hostinger-mcp-server/0.0.19';
2518+
headers['User-Agent'] = 'hostinger-mcp-server/0.0.20';
25192519

25202520
return headers;
25212521
}

server.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const TOOLS: OpenApiTool[] = [
5151
},
5252
"name": {
5353
"type": "string",
54-
"description": "Filter catalog items by name. Use `*` for wildcard search."
54+
"description": "Filter catalog items by name. Use `*` for wildcard search, e.g. `.COM*` to find .com domain"
5555
}
5656
},
5757
"required": []
@@ -2488,7 +2488,7 @@ const SECURITY_SCHEMES: Record<string, SecurityScheme> = {
24882488

24892489
/**
24902490
* MCP Server for Hostinger API
2491-
* Generated from OpenAPI spec version 0.0.44
2491+
* Generated from OpenAPI spec version 0.0.45
24922492
*/
24932493
class MCPServer {
24942494
private server: Server;
@@ -2510,7 +2510,7 @@ class MCPServer {
25102510
this.server = new Server(
25112511
{
25122512
name: "hostinger-api-mcp",
2513-
version: "0.0.19",
2513+
version: "0.0.20",
25142514
},
25152515
{
25162516
capabilities: {
@@ -2535,7 +2535,7 @@ class MCPServer {
25352535
});
25362536
}
25372537

2538-
headers['User-Agent'] = 'hostinger-mcp-server/0.0.19';
2538+
headers['User-Agent'] = 'hostinger-mcp-server/0.0.20';
25392539

25402540
return headers;
25412541
}

types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Prices in catalog items is displayed as cents (without floating point), e.g: flo
1616
*/
1717
category?: string;
1818
/**
19-
* Filter catalog items by name. Use `*` for wildcard search.
19+
* Filter catalog items by name. Use `*` for wildcard search, e.g. `.COM*` to find .com domain
2020
*/
2121
name?: string;
2222
};

0 commit comments

Comments
 (0)