karrito-mcp 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/LICENSE +21 -0
- package/README.md +4 -0
- package/package.json +25 -9
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to karrito-mcp will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [2.0.2] - 2026-03-18
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Improved error messages for invalid API keys
|
|
9
|
+
|
|
10
|
+
## [2.0.0] - 2026-03-18
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- 30 tools across 10 domains (products, categories, orders, discounts, reviews, customers, store, shipping, analytics, public catalog)
|
|
14
|
+
- 5 static resources (pricing, features, niches, competitors, currencies)
|
|
15
|
+
- Zod validation on all tool inputs
|
|
16
|
+
- `context7.json` for Context7 indexing
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Migrated from v1 (5 tools) to v2 architecture
|
|
20
|
+
- All tools now use structured Zod schemas
|
|
21
|
+
|
|
22
|
+
## [1.0.0] - 2026-03-17
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- Initial release with 5 basic tools
|
|
26
|
+
- Published on npm as `karrito-mcp`
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Ronaldo Paulino
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# karrito-mcp
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/karrito-mcp)
|
|
4
|
+
[](https://github.com/curetcore/karrito-mcp/blob/main/LICENSE)
|
|
5
|
+
[](https://github.com/curetcore/karrito-mcp/actions/workflows/ci.yml)
|
|
6
|
+
|
|
3
7
|
MCP server for [Karrito](https://karrito.shop) — the digital catalog builder for WhatsApp sellers in LATAM.
|
|
4
8
|
|
|
5
9
|
Connect your AI assistant (Claude, Cursor, Windsurf) to Karrito and manage your entire store — products, orders, discounts, reviews, shipping, analytics — without leaving your editor.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "karrito-mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "MCP server for Karrito — digital catalog builder for WhatsApp sellers in LATAM",
|
|
5
5
|
"bin": {
|
|
6
6
|
"karrito-mcp": "./dist/index.js"
|
|
@@ -10,35 +10,51 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc",
|
|
12
12
|
"dev": "tsx src/index.ts",
|
|
13
|
-
"prepublishOnly": "npm run build"
|
|
13
|
+
"prepublishOnly": "npm run build",
|
|
14
|
+
"typecheck": "tsc --noEmit"
|
|
14
15
|
},
|
|
15
16
|
"keywords": [
|
|
16
17
|
"mcp",
|
|
18
|
+
"mcp-server",
|
|
19
|
+
"model-context-protocol",
|
|
17
20
|
"karrito",
|
|
18
21
|
"whatsapp",
|
|
19
22
|
"catalog",
|
|
23
|
+
"digital-catalog",
|
|
20
24
|
"latam",
|
|
21
25
|
"ecommerce",
|
|
22
|
-
"
|
|
26
|
+
"ai-tools",
|
|
27
|
+
"claude",
|
|
28
|
+
"cursor"
|
|
23
29
|
],
|
|
24
|
-
"author":
|
|
30
|
+
"author": {
|
|
31
|
+
"name": "Ronaldo Paulino",
|
|
32
|
+
"url": "https://www.instagram.com/_ronaldopaulino/"
|
|
33
|
+
},
|
|
25
34
|
"license": "MIT",
|
|
35
|
+
"homepage": "https://karrito.shop",
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/curetcore/karrito-mcp/issues"
|
|
38
|
+
},
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/curetcore/karrito-mcp.git"
|
|
42
|
+
},
|
|
26
43
|
"dependencies": {
|
|
27
44
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
28
45
|
"zod": "^3.25.0"
|
|
29
46
|
},
|
|
30
47
|
"devDependencies": {
|
|
48
|
+
"@types/node": "^25.5.0",
|
|
31
49
|
"tsx": "^4.19.0",
|
|
32
50
|
"typescript": "^5.8.0"
|
|
33
51
|
},
|
|
34
52
|
"files": [
|
|
35
53
|
"dist",
|
|
36
|
-
"README.md"
|
|
54
|
+
"README.md",
|
|
55
|
+
"CHANGELOG.md",
|
|
56
|
+
"LICENSE"
|
|
37
57
|
],
|
|
38
|
-
"repository": {
|
|
39
|
-
"type": "git",
|
|
40
|
-
"url": "https://github.com/curetcore/karrito-mcp"
|
|
41
|
-
},
|
|
42
58
|
"engines": {
|
|
43
59
|
"node": ">=18"
|
|
44
60
|
}
|