Skip to content

Releases: ckaraca/fake-store-mcp

v1.0.1 - Documentation Update

Choose a tag to compare

@ckaraca ckaraca released this 01 Oct 19:18

📚 Documentation Improvements

  • Updated installation method to use npx as the primary method
  • Added alternative configuration for global install
  • More reliable setup for Claude Desktop users

Installation (Updated)

{
  "mcpServers": {
    "fake-store": {
      "command": "npx",
      "args": ["-y", "fake-store-mcp"]
    }
  }
}

Full Changelog: v1.0.0...v1.0.1

v1.0.0 - Initial Release

Choose a tag to compare

@ckaraca ckaraca released this 01 Oct 19:16

🚀 First Stable Release of Fake Store MCP Server

A Model Context Protocol (MCP) server that provides AI assistants like Claude with access to the Fake Store API.

✨ Features

  • 9 Ready-to-Use Tools for products, carts, and users
  • Full TypeScript Support with strict type safety
  • Production-Ready with retry logic and error handling
  • Zero Configuration - works out of the box
  • Beginner-Friendly - great for learning MCP development

📦 Installation

npm install -g fake-store-mcp

🛠️ Available Tools

Products (4 tools)

  • list_products - Get all products with pagination
  • get_product - Get product details by ID
  • list_categories - Get all categories
  • get_products_by_category - Filter products by category

Carts (3 tools)

  • list_carts - Get all shopping carts
  • get_cart - Get cart details by ID
  • get_user_carts - Get user's carts

Users (2 tools)

  • list_users - Get all users
  • get_user - Get user details by ID

📚 Resources

🙏 Acknowledgments

Built with MCP TypeScript SDK and Fake Store API.