Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"virtocommerce": {
"args": [
"mcp-remote",
"http://localhost:5000/api/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A VirtoCommerce module that provides Model Context Protocol (MCP) server functionality, enabling AI agents like Claude Desktop to interact with VirtoCommerce platform APIs.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-remote' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
mcp-remote exposed to OS command injection via untrusted MCP server connections
mcp-remote is exposed to OS command injection when connecting to untrusted MCP servers due to crafted input from the authorization_endpoint response URL
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 Vc Module Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A VirtoCommerce module that provides Model Context Protocol (MCP) server functionality, enabling AI agents like Claude Desktop to interact with VirtoCommerce platform APIs.
Claude Desktop ←→ mcp-remote proxy ←→ VirtoCommerce Web Module
(MCP Protocol) (HTTP) (Business Logic)
Build the solution:
dotnet build
Deploy the VirtoCommerce.McpServer.Web module to your VirtoCommerce platform
Install the mcp-remote proxy:
npm install -g mcp-remote
Update your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"virtocommerce": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:5000/api/mcp"
]
}
}
}
Start your VirtoCommerce platform (ensure it's running on http://localhost:5000)
In Claude Desktop, you should now have access to the search_customer_orders tool
Test with a query like: "Search for orders from customer email john@example.com"
Search customer orders by various criteria.
Parameters:
customerId (string, optional): Customer ID to search orders forcustomerEmail (string, optional): Customer email to search orders fororderNumber (string, optional): Order number to search forstatus (string, optional): Order status to filter bystoreId (string, optional): Store ID to filter ordersstartDate (string, optional): Start date for order search (ISO 8601 format)endDate (string, optional): End date for order search (ISO 8601 format)take (integer, optional): Maximum number of orders to return (default: 20)skip (integer, optional): Number of orders to skip for pagination (default: 0)The module exposes the following endpoints:
POST /api/mcp - Main MCP protocol endpoint (handles initialize, tools/list, tools/call)POST /api/mcp/sse - Alternative MCP endpoint (same as above)GET /api/mcp/status - Server status and capabilitiesGET /api/mcp/tools - List available toolsPOST /api/mcp/tools/call - Execute tools directlyVirtoCommerceMcpTools class in McpServerController.cs[McpServerTool, Description("Tool description")][Description("Parameter description")]_mcpServerService.ExecuteToolAsync()Example:
[McpServerTool, Description("Get customer information")]
public async Task<string> GetCustomer(
[Description("Customer ID")] string customerId,
CancellationToken cancellationToken = default)
{
var arguments = new Dictionary<string, object> { ["customerId"] = customerId };
var result = await _mcpServerService.ExecuteToolAsync("get_customer", arguments, cancellationToken);
return JsonSerializer.Serialize(result, new JsonSerializerOptions { WriteIndented = true });
}
src/
├── VirtoCommerce.McpServer.Core/ # Core interfaces and services
├── VirtoCommerce.McpServer.Data/ # Data access layer
├── VirtoCommerce.McpServer.Data.MySql/ # MySQL data provider
├── VirtoCommerce.McpServer.Data.PostgreSql/ # PostgreSQL data provider
├── VirtoCommerce.McpServe
... [View full README on GitHub](https://github.com/VirtoCommerce/vc-module-mcp-server#readme)