@mac-claw/mcp 1.1.1 → 1.2.0
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/package.json +1 -1
- package/server.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mac-claw/mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "MCP Server for Mac Claw - AI Mac Marketplace. 47 tools for items, market analysis, checkout, watches, inspections, notifications, and more.",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"type": "module",
|
package/server.js
CHANGED
|
@@ -27,7 +27,7 @@ if (!API_KEY) {
|
|
|
27
27
|
const client = new MacClawApiClient(API_KEY, BASE_URL);
|
|
28
28
|
|
|
29
29
|
const server = new Server(
|
|
30
|
-
{ name: 'macclaw-mcp-server', version: '1.
|
|
30
|
+
{ name: 'macclaw-mcp-server', version: '1.2.0' },
|
|
31
31
|
{ capabilities: { tools: {} } }
|
|
32
32
|
);
|
|
33
33
|
|
|
@@ -890,7 +890,7 @@ async function main() {
|
|
|
890
890
|
// Health check
|
|
891
891
|
if (req.url === '/health') {
|
|
892
892
|
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
893
|
-
res.end(JSON.stringify({ status: 'ok', tools: TOOLS.length, version: '1.
|
|
893
|
+
res.end(JSON.stringify({ status: 'ok', tools: TOOLS.length, version: '1.2.0' }));
|
|
894
894
|
return;
|
|
895
895
|
}
|
|
896
896
|
|