mcp-store
0
The MCP Store project is a Model Context Protocol server designed to interact with a store's customer and order data. It offers functionalities such as retrieving all customers, searching for customers by name, and obtaining all orders for a specific customer.
MCP Store
A Model Context Protocol (MCP) server for retrieving customer and order information from a store API.
Overview
This project implements a Model Context Protocol server that provides tools for interacting with a store's customer and order data. It allows Claude to:
- Get a list of all customers
- Search for customers by name
- Retrieve all orders for a specific customer
Prerequisites
- Node.js (latest LTS version recommended)
- A local API server running on http://localhost:3000 that provides customer and order data
Usage
The MCP server provides the following tools:
get-all-customers
Returns a list of all customers in the store database.
get-customer-by-name
Searches for customers by name and returns all matching results.
- customerName: The name to search for
get-all-orders-by-customer
Retrieves all orders placed by a specific customer.
- customerId: The unique identifier for the customer