hostinger-api-mcp 0.0.1

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.
Files changed (4) hide show
  1. package/.env.example +10 -0
  2. package/README.md +922 -0
  3. package/package.json +35 -0
  4. package/server.js +1896 -0
package/.env.example ADDED
@@ -0,0 +1,10 @@
1
+ # API Configuration
2
+ TRANSPORT=stdio # Fixed to stdio
3
+
4
+ # Debug
5
+ DEBUG=false
6
+
7
+ # --- Authorization Configuration ---
8
+ # Example for HTTP Bearer Token "apiToken"
9
+ APITOKEN=YOUR_TOKEN_VALUE
10
+