amazon-sp-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
amazon-sp-mcp by mansournorouzi | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 29 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | E-commerceFinanceProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
amazon-sp-mcp · Summary
Amazon SP-API MCP server connects Claude to Seller Central for sales, inventory, orders, and financial data using LWA OAuth authentication.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
amazon-sp-mcp · Use cases
- Automate sales and inventory analysis through natural language queries
- Track reimbursements, settlements, and fees without logging into Seller Central
- Generate performance reports for specific products or time periods
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
amazon-sp-mcp · Install
# Clone and install
git clone https://github.com/mansournorouzi/amazon-sp-mcp.git
cd amazon-sp-mcp
npm install
npm run build
# Configure credentials
cp .env.example .env
# Edit .env with your LWA credentials, Seller ID, Marketplace ID
# For Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
```json
{
"mcpServers": {
"amazon-seller": {
"command": "node",
"args": ["/path/to/amazon-sp-mcp/build/index.js"],
"env": {
"LWA_CLIENT_ID": "amzn1.application-oa2-client.xxxxx",
"LWA_CLIENT_SECRET": "your_secret",
"LWA_REFRESH_TOKEN": "Atzr|your_token",
"SELLER_ID": "your_seller_id",
"MARKETPLACE_ID": "ATVPDKIKX0DER",
"SP_API_ENDPOINT": "https://sellingpartnerapi-na.amazon.com"
}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.