@kraftapps-ai/kai 1.6.4 → 1.6.5
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/kai +4 -2
- package/package.json +1 -1
package/kai
CHANGED
|
@@ -130,8 +130,8 @@ if [ "$needs_mcp_update" = true ]; then
|
|
|
130
130
|
|
|
131
131
|
if [ "$mantle_available" = false ] && ! echo "$mcp_config" | grep -q "mantle"; then
|
|
132
132
|
echo "Setting up Mantle MCP (billing, subscriptions, analytics)..."
|
|
133
|
-
mcp_config=$(echo "$mcp_config" | jq '.mcpServers["mantle-foundations"] = {"url": "https://mcp.heymantle.com/foundations"}')
|
|
134
|
-
mcp_config=$(echo "$mcp_config" | jq '.mcpServers["mantle-core"] = {"url": "https://mcp.heymantle.com/core"}')
|
|
133
|
+
mcp_config=$(echo "$mcp_config" | jq '.mcpServers["mantle-foundations"] = {"type": "http", "url": "https://mcp.heymantle.com/foundations"}')
|
|
134
|
+
mcp_config=$(echo "$mcp_config" | jq '.mcpServers["mantle-core"] = {"type": "http", "url": "https://mcp.heymantle.com/core"}')
|
|
135
135
|
fi
|
|
136
136
|
|
|
137
137
|
echo "$mcp_config" > .mcp.json
|
|
@@ -153,9 +153,11 @@ if [ "$needs_mcp_update" = true ]; then
|
|
|
153
153
|
"args": ["-y", "@shopify/dev-mcp@latest"]
|
|
154
154
|
},
|
|
155
155
|
"mantle-foundations": {
|
|
156
|
+
"type": "http",
|
|
156
157
|
"url": "https://mcp.heymantle.com/foundations"
|
|
157
158
|
},
|
|
158
159
|
"mantle-core": {
|
|
160
|
+
"type": "http",
|
|
159
161
|
"url": "https://mcp.heymantle.com/core"
|
|
160
162
|
}
|
|
161
163
|
}
|