npm nanocart-mcpstreamable-httpMITupdated 26d ago
Official NanoCart MCP server โ run your store from any MCP-capable AI agent (Claude Code, Claude Desktop, Cursor, Codex, and friends). List and update products (with variants and images), manage orders, coupons, categories, subscribers and settings, and pull sales reports โ by asking.
What can you do with nanocart mcp?
nanocart-mcp
Official NanoCart MCP server โ run your store from any MCP-capable AI agent (Claude Code, Claude Desktop, Cursor, Codex, and friends). List and update products (with variants and images), manage orders, coupons, categories, subscribers and settings, and pull sales reports โ by asking.
39 tools. Reads are marked read-only; destructive tools (archive product, delete coupon) are annotated so your agent asks before acting. Refunds, billing changes, and API-key management are deliberately NOT exposed โ do those in your dashboard.
Credentials
From your dashboard: Settings โ API Keys (sc_live_..., keep secret) and
Settings โ Store Information (your store ID). The key grants full admin
access to your store โ treat it like a password.
Option A โ Local (recommended)
Claude Code:
claude mcp add nanocart --env NANOCART_API_KEY=sc_live_... --env NANOCART_STORE_ID=your-store-id -- npx -y nanocart-mcp
Any client that speaks stdio MCP (JSON config style):
{
"mcpServers": {
"nanocart": {
"command": "npx",
"args": ["-y", "nanocart-mcp"],
"env": {
"NANOCART_API_KEY": "sc_live_...",
"NANOCART_STORE_ID": "your-store-id"
}
}
}
}
Option B โ Hosted (no install)
Endpoint: https://mcp.nanocart.io/mcp?store=your-store-id with header
Authorization: Bearer sc_live_... (Streamable HTTP).
Claude Code:
claude mcp add nanocart --transport http "https://mcp.nanocart.io/mcp?store=your-store-id" --header "Authorization: Bearer sc_live_..."
Note: web clients that only support OAuth-based custom connectors (e.g. claude.ai's connector UI) can't send API-key headers yet โ use Option A there.
Example prompts
- "List my draft products and publish the ones with images"
- "Create a SUMMER20 coupon โ 20% off, min order $50, expires end of August"
- "What did I sell last week? Any orders I still need to ship?"
- "Mark order NCT-1042 shipped with tracking 9400 1000 0000 0000 0000 00"
- "Upload the photos in ./shots and create products from them at $24 each"
Safety
- Secrets are redacted from every response; your key is never echoed or logged.
- Destructive tools carry MCP
destructiveHintannotations โ well-behaved clients prompt before running them. - Prices are explicit
price_centsintegers (no dollars/cents ambiguity).
Pairs with the NanoCart skill (integration knowledge for building the cart into websites). Docs: https://docs.nanocart.io/#ai-build ยท AI-readable: https://docs.nanocart.io/llms-full.txt
MIT ยท ยฉ 2026 NanoCart ยท a ByteBunny, LLC company
Install
Add nanocart mcp to your client. Pick the one you use.
{
"servers": {
"nanocart-mcp": {
"type": "http",
"url": "https://mcp.nanocart.io/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add nanocart-mcp -- npx -y nanocart-mcpcodex mcp add nanocart-mcp -- npx -y nanocart-mcpamp mcp add nanocart-mcp -- npx -y nanocart-mcp{
"mcpServers": {
"nanocart-mcp": {
"command": "npx",
"args": [
"-y",
"nanocart-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"nanocart-mcp": {
"command": "npx",
"args": [
"-y",
"nanocart-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"nanocart-mcp": {
"command": "npx",
"args": [
"-y",
"nanocart-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"nanocart-mcp": {
"command": "npx",
"args": [
"-y",
"nanocart-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"nanocart-mcp": {
"command": "npx",
"args": [
"-y",
"nanocart-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"nanocart-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"nanocart-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"nanocart-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"nanocart-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y nanocart-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance25/25
- Trust16/20
- Capability0/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 18 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.2.0Latest | Aug 13, 2026 |
| 1.1.0 | Aug 6, 2026 |
| 1.0.1 | Jul 31, 2026 |