hostinger-api-mcp 0.1.18 → 0.1.20

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.
@@ -8,6 +8,9 @@ on:
8
8
  jobs:
9
9
  release:
10
10
  runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write
13
+ contents: write
11
14
  steps:
12
15
  - name: Repo checkout
13
16
  uses: actions/checkout@v4
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "hostinger-api-mcp",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
+ "mcpName": "io.github.hostinger/hostinger-api-mcp",
4
5
  "description": "MCP server for Hostinger API",
5
6
  "repository": {
6
7
  "type": "git",
package/server.js CHANGED
@@ -3422,7 +3422,7 @@ class MCPServer {
3422
3422
  this.server = new Server(
3423
3423
  {
3424
3424
  name: "hostinger-api-mcp",
3425
- version: "0.1.18",
3425
+ version: "0.1.20",
3426
3426
  },
3427
3427
  {
3428
3428
  capabilities: {
@@ -3447,7 +3447,7 @@ class MCPServer {
3447
3447
  });
3448
3448
  }
3449
3449
 
3450
- headers['User-Agent'] = 'hostinger-mcp-server/0.1.18';
3450
+ headers['User-Agent'] = 'hostinger-mcp-server/0.1.20';
3451
3451
 
3452
3452
  return headers;
3453
3453
  }
package/server.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3
+ "name": "io.github.hostinger/hostinger-api-mcp",
4
+ "description": "MCP server for Hostinger API",
5
+ "repository": {
6
+ "url": "https://github.com/hostinger/api-mcp-server",
7
+ "source": "github"
8
+ },
9
+ "version": "0.1.20",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "hostinger-api-mcp",
14
+ "version": "0.1.20",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "name": "API_TOKEN",
21
+ "description": "Hostinger API token",
22
+ "isRequired": true,
23
+ "isSecret": true,
24
+ "format": "string"
25
+ }
26
+ ]
27
+ }
28
+ ]
29
+ }
package/server.ts CHANGED
@@ -3444,7 +3444,7 @@ class MCPServer {
3444
3444
  this.server = new Server(
3445
3445
  {
3446
3446
  name: "hostinger-api-mcp",
3447
- version: "0.1.18",
3447
+ version: "0.1.20",
3448
3448
  },
3449
3449
  {
3450
3450
  capabilities: {
@@ -3469,7 +3469,7 @@ class MCPServer {
3469
3469
  });
3470
3470
  }
3471
3471
 
3472
- headers['User-Agent'] = 'hostinger-mcp-server/0.1.18';
3472
+ headers['User-Agent'] = 'hostinger-mcp-server/0.1.20';
3473
3473
 
3474
3474
  return headers;
3475
3475
  }