Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-product-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.
An Azure Functions app that exposes a product catalog as an MCP (Model Context Protocol) server. AI assistants such as GitHub Copilot can connect to this server and invoke CRUD operations on a sample product catalog through MCP tools.
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 Mcp Product Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An Azure Functions app that exposes a product catalog as an MCP (Model Context Protocol) server. AI assistants such as GitHub Copilot can connect to this server and invoke CRUD operations on a sample product catalog through MCP tools.
| Component | Details |
|---|---|
| Runtime | .NET 10 (isolated worker) |
| Host | Azure Functions v4 |
| MCP SDK | Microsoft.Azure.Functions.Worker.Extensions.Mcp 1.1.0 |
| Telemetry | Application Insights |
The server exposes the following tools:
| Tool | Description |
|---|---|
get_all_products | Returns the full list of products. |
get_product_by_id | Returns a single product by its ID. |
get_products_by_category | Returns products filtered by category (Electronics, Furniture, Audio, Lighting, Accessories). |
create_product | Creates a new product and returns it. |
update_product | Updates an existing product. Only supplied fields are changed. |
delete_product | Deletes a product by its ID. |
├── Program.cs # Host builder & DI configuration
├── McpProductServer.csproj # Project file & package references
├── host.json # Functions host config & MCP metadata
├── local.settings.json # Local development settings
├── Functions/
│ └── ProductFunctions.cs # MCP tool function definitions
├── Models/
│ └── Product.cs # Product data model
├── Services/
│ └── ProductStore.cs # Thread-safe in-memory product store
└── .vscode/
└── mcp.json # VS Code MCP server configuration
git clone <repository-url>
cd mcp-product-server
azurite --silent
func start
The MCP endpoint will be available at:
http://localhost:7071/runtime/webhooks/mcp
The included .vscode/mcp.json configures two MCP server entries:
http://localhost:7071/runtime/webhooks/mcpOpen VS Code, start the local server, and any MCP-capable AI assistant (e.g. GitHub Copilot) will discover the tools automatically.
{
"id": "1",
"name": "Wireless Mouse",
"description": "Ergonomic wireless mouse with USB receiver",
"price": 29.99,
"category": "Electronics",
"stock": 150
}
The in-memory store is pre-seeded with 10 sample products across five categories: Electronics, Furniture, Audio, Lighting, and Accessories.
See deploy.md for full Azure deployment instructions.
This project is provided as-is for demonstration purposes.