kitcommerce-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@kitcommerce-mcpGet the dashboard summary"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
kitcommerce-mcp
A standalone Model Context Protocol server that
exposes the admin side of kitcommerce-api as MCP tools, so an AI assistant
(Claude Desktop, Claude Code, Cursor, …) can manage a store: products,
categories, collections, coupons, orders, inventory, customers and dashboard.
It talks to the API over HTTP — it does not import the API code — so it can point at any deployment (local, staging, prod) via environment variables.
How it works
Transport: stdio (spawned by the MCP client).
Auth: sends the admin API key as the
authorizationheader (matched againstApiKey.secretin the API) and the store id asx-litekart-store.Tools are a curated CRUD set over the core commerce entities (see below).
Related MCP server: WooCommerce MCP Server
Setup
cd mcp
npm install
npm run buildConfigure credentials (copy .env.example for reference — the MCP client
supplies these as env, see below):
Variable | Description |
| Base URL of the API, e.g. |
| Admin API key secret (sent as |
| Store id (sent as |
Create the API key in the admin API keys section; it is tied to a store and a user/role, which determines what the MCP server is allowed to do.
Register with an MCP client
Claude Desktop / Claude Code (claude_desktop_config.json or .mcp.json)
{
"mcpServers": {
"kitcommerce": {
"command": "node",
"args": ["D:/projects/lk/kitcommerce-api/mcp/dist/index.js"],
"env": {
"KITCOMMERCE_API_URL": "http://localhost:3000",
"KITCOMMERCE_API_KEY": "your_admin_api_key_secret",
"KITCOMMERCE_STORE_ID": "your_store_id"
}
}
}
}For local development you can skip the build and run from source with tsx:
{
"command": "npx",
"args": ["tsx", "D:/projects/lk/kitcommerce-api/mcp/src/index.ts"]
}Tools
Group | Tools |
Products |
|
Categories |
|
Collections |
|
Coupons |
|
Orders |
|
Inventory |
|
Customers |
|
Dashboard |
|
list_* tools accept page, page_size, search, sort, status, and a
free-form filters object for any additional query params. create_* /
update_* accept a data object sent as the JSON body — call the matching
get_* on an existing record first to learn the exact field shape.
Extending
Tools are declared in src/tools.ts. Add a resource with the crud() helper or
push a bespoke ToolDef. Keep the set curated — most MCP clients cap the number
of tools they will load.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceA production-grade MCP server and CLI tool that enables AI agents to manage Shopify stores through 49 built-in tools across products, orders, inventory, and analytics. It supports natural language workflows for tasks like inventory tracking, customer support, and sales reporting.3717MIT
- AlicenseBqualityDmaintenanceA production-grade MCP server for the WooCommerce REST API, enabling AI assistants to manage products, orders, customers, and store settings.341MIT
- AlicenseAqualityCmaintenanceMCP server for managing WooCommerce stores through AI assistants like Claude. Provides 101 tools covering products, orders, customers, coupons, shipping, taxes, webhooks, settings, reports, and more.1001031MIT
- AlicenseCqualityCmaintenanceAn MCP server providing AI agents with full access to the Shopify Admin API via 136 tools for managing products, orders, customers, collections, and more.10010MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/itswadesh/kitcommerce-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server