Fake Store API MCP Server
Provides seamless access to the Fake Store API for AI assistants with 18 CRUD tools for managing e-commerce data including products, carts, and users. Perfect for e-commerce demos, testing, and learning MCP development with zero configuration required.
README
Fake Store API MCP Server
A Model Context Protocol (MCP) server that provides seamless access to the Fake Store API for AI assistants. Perfect for e-commerce demos, testing, and learning MCP development.
Features
- 🛍️ Complete E-commerce Data Access: Products, carts, and users
- 🔧 18 MCP Tools: Full CRUD operations for all resources
- 📦 Easy Integration: Works with Claude Desktop, Plugged.in, and other MCP clients
- 🚀 Zero Configuration: Works out of the box with Fake Store API
- 📝 TypeScript: Fully typed for better development experience
- ✅ Input Validation: Comprehensive parameter validation
Installation
NPX (Recommended)
npx -y mcp-server-fakestore
From Source
git clone https://github.com/yourusername/mcp-server-fakestore.git
cd mcp-server-fakestore
npm install
npm run build
Configuration
Claude Desktop
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"fakestore": {
"command": "npx",
"args": ["-y", "mcp-server-fakestore"]
}
}
}
Plugged.in
Add this server configuration in Plugged.in MCP settings:
{
"name": "fakestore",
"command": "npx",
"args": ["-y", "mcp-server-fakestore"]
}
Available Tools
Products (7 tools)
fakestore_get_products- Get all products with optional limit and sortingfakestore_get_product- Get a single product by IDfakestore_get_categories- Get all product categoriesfakestore_get_products_by_category- Get products in a specific categoryfakestore_add_product- Add a new product (simulation)fakestore_update_product- Update an existing product (simulation)fakestore_delete_product- Delete a product (simulation)
Carts (6 tools)
fakestore_get_carts- Get all carts with optional limit and sortingfakestore_get_cart- Get a single cart by IDfakestore_get_user_carts- Get all carts for a specific userfakestore_add_cart- Add a new cart (simulation)fakestore_update_cart- Update an existing cart (simulation)fakestore_delete_cart- Delete a cart (simulation)
Users (5 tools)
fakestore_get_users- Get all users with optional limit and sortingfakestore_get_user- Get a single user by IDfakestore_add_user- Add a new user (simulation)fakestore_update_user- Update an existing user (simulation)fakestore_delete_user- Delete a user (simulation)
Usage Examples
With Claude Desktop
Get all products:
Show me all products from the fake store
Search by category:
Show me electronics from the fake store
Get user's cart:
What's in user ID 1's shopping cart?
Product analysis:
Find the 5 most expensive products in the store
Programmatic Usage
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
// The server runs on stdio transport
// Connect your MCP client to interact with the tools
Data Structure
Product
{
id: number;
title: string;
price: number;
description: string;
category: string;
image: string;
rating: {
rate: number;
count: number;
};
}
Cart
{
id: number;
userId: number;
date: string;
products: Array<{
productId: number;
quantity: number;
}>;
}
User
{
id: number;
email: string;
username: string;
password: string;
name: {
firstname: string;
lastname: string;
};
address: {
city: string;
street: string;
number: number;
zipcode: string;
geolocation: {
lat: string;
long: string;
};
};
phone: string;
}
Development
# Install dependencies
npm install
# Build the project
npm run build
# Watch mode for development
npm run watch
# Run tests
npm test
Important Notes
- Simulation: The Fake Store API is read-only. POST, PUT, and DELETE operations return simulated responses but don't persist data.
- Rate Limits: The public API has no strict rate limits, but please be respectful.
- Data: All data is fake and for testing purposes only.
Troubleshooting
Server not appearing in Claude Desktop
- Ensure the configuration file is valid JSON
- Restart Claude Desktop completely
- Check the Claude Desktop logs for errors
Tools not working
- Verify you have an active internet connection (API requires connectivity)
- Check if fakestoreapi.com is accessible
- Review error messages in Claude Desktop logs
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
MIT License - see LICENSE file for details.
Resources
Support
- 🐛 Report Issues
- 💬 Discussions
- 📧 Email: your.email@example.com
Built with ❤️ for the MCP community
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。