Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ecommerce-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
This is the reference implementation for the mcp server
MCP Security Weekly
Get CVE alerts and security updates for Ecommerce Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project is an intelligent Model Context Protocol (MCP) Server built with Java and Spring AI. It acts as a "toolbelt" for an AI, bridging the gap between a natural language model (LLM) and a traditional e-commerce REST API.
Instead of exposing standard CRUD endpoints, this server exposes the core functionalities of an e-commerce backend (like searching for products or adding items to a cart) as discrete tools. These tools can be discovered and executed by an MCP client, allowing for complex, natural language-driven interactions with the e-commerce platform.
This MCP server is a middle layer that sits between an MCP client (which handles the AI logic) and your core business logic API.

git clone https://github.com/surajbadhe/ecommerce-mcp-server.git
cd ecommerce-mcp-server
mvn clean install
This server can be run in two modes, configured in application.properties. You interact with it using an MCP client, not by calling REST endpoints directly.
Recommended for connecting to Postman or your custom MCP Client Gateway.
Run:
java -jar target/ecommerce-mcp-server-<version>.jar
http://localhost:8089/mcp/ssespring.main.web-application-type=none java -jar target/ecommerce-mcp-server-<version>.jar
You can also run the application using Maven:
mvn spring-boot:run
The server will start on the configured port (default: 8089). All interactions are via MCP clients.
Application settings are managed in src/main/resources/application.properties.
Key properties to configure:
server.port: The port for the server to run on in HTTP mode (e.g., 8089)spring.ai.mcp.server.transport-type: The transport mode (HTTP or STDIO)ecommerce.api.base.url: The URL of the main e-commerce REST API (e.g., http://localhost:8088)To modify settings, edit the application.properties file and restart the application.
This server exposes the following functions from the e-commerce API as tools:
getProducts: Get a list of available products, with optional filters for brand and type.getProductById: Get the details