Overview
what is Guitar Store MCP Server?
Guitar Store MCP Server is a Model Context Protocol (MCP) server designed for a guitar store, providing tools for querying guitar inventory and processing orders.
how to use Guitar Store MCP Server?
To use the Guitar Store MCP Server, install the dependencies using npm install, then start the server with npm start. The server will run on http://localhost:3001 by default.
key features of Guitar Store MCP Server?
- Get all guitars in inventory
- Filter guitars by type (Electric or Acoustic)
- Filter guitars by brand
- Get guitar details by ID
- Process guitar purchases
- View all orders
- Get inventory status summary
use cases of Guitar Store MCP Server?
- Managing guitar inventory for a retail store.
- Processing customer orders for guitar purchases.
- Providing a backend service for a guitar-related web application.
FAQ from Guitar Store MCP Server?
- What is the default server URL?
The server runs on http://localhost:3001 by default.
- How can I filter guitars?
You can filter guitars by type (Electric or Acoustic) or by brand using the provided MCP tools.
- What tools are available in the MCP server?
The server provides tools like
getGuitars,getGuitarsByType,getGuitarsByBrand,getGuitarById,getOrders,purchaseGuitars, andgetInventoryStatus.