Hostinger Ecommerce MCP
Interact with the Hostinger Ecommerce API using a JWT token and store ID.
Hostinger Ecommerce MCP
This is a Model Context Protocol (MCP) server for interacting with the Hostinger Ecommerce API.
Setup
- Install dependencies:
npm install
- Build the project:
npm run build
- MCP server configuration:
- MacOS (zsh):
{
"mcpServers": {
"hostinger-ecommerce": {
"command": "node",
"args": [
"<path/to/hostinger-ecommerce-mcp/build/index.js>",
"--jwt",
"<your-jwt-token>",
"--store-id",
"<your-store-id>"
]
}
}
}
- Windows (cmd):
{
"mcpServers": {
"hostinger-ecommerce": {
"command": "cmd",
"args": [
"/c",
"node",
"<path/to/hostinger-ecommerce-mcp/build/index.js>",
"--jwt",
"<your-jwt-token>",
"--store-id",
"<your-store-id>"
]
}
}
}
Available Tools
The MCP server provides the following tools:
-
getProduct - Retrieves a single product by ID
- Parameter:
productId- The ID of the product to retrieve
- Parameter:
-
getProducts - Retrieves a list of products (maximum 25)
- Parameters:
limit(optional, default: 25) - Maximum number of products to returnoffset(optional, default: 0) - Offset for pagination
- Parameters:
-
updateProductDescription - Updates a product's description
- Parameters:
productId- The ID of the product to updatedescription- The new product description
- Parameters:
Related Servers
Tencent Cloud Live
An MCP server for interacting with the Tencent Cloud Live Streaming service API.
Contentful
Interact with your content on the Contentful platform
CData eBay Analytics
Access eBay Analytics data via the CData JDBC Driver.
MCP Server Sample
Provides weather information tools using the US National Weather Service API.
Cloudflare Remote MCP Server (Authless)
Deploy a remote, authentication-free MCP server on Cloudflare Workers or locally via npm.
Strava MCP Server
Access the Strava API to query athlete activities data.
MCP Currency Converter Server
Provides real-time currency conversion and exchange rate data using the Frankfurter API.
Strava MCP Server
Access the Strava API to interact with activities, athlete information, and other Strava data.
k8s Pilot
A lightweight, centralized control plane for managing multiple Kubernetes clusters using kubeconfig or in-cluster configuration.
Weather MCP Server
Provides weather information using the free and open-source Open-Meteo API. No API key required.