An MCP server that retrieves product data from the DummyJSON API, supporting filtering by various parameters like ID, title, category, brand, price and rating.
This project demonstrates the use of MCP (Model Context Protocol) server that retrieves data from the DummyJSON API. Built using Cursor IDE with the default agent.
id
(string, optional): Filter products by IDq
(string, optional): Filter products by titlecategory
(string, optional): Filter products by categorybrand
(string, optional): Filter products by brandprice
(number, optional): Filter products by pricerating
(number, optional): Filter products by ratingskip
(number, optional, default: 0): Number of products to skiplimit
(number, optional, default: 10): Maximum number of products to returnTo configure this MCP server with Cursor:
Ctrl + Shift + P
Cmd + Shift + P
{ "mcpServers": { "postgres": { "command": "node", "args": ["ABSOLUTE_PATH_TO_PROJECT/src/index.ts"] } } }
{ "mcpServers": { "postgres": { "command": "wsl.exe", "args": [ "-e", "ABSOLUTE_PATH_TO_NODE/.nvm/versions/node/v23.11.0/bin/node", "ABSOLUTE_PATH_TO_PROJECT/src/index.ts" ] } } }
To find your Node.js path, run:
which node
This project is licensed under the MIT License.
Discover shared experiences
Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!