@kasarlabs/ask-starknet-mcp 0.1.7 → 0.1.8
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/categories.json +6 -1
- package/mcps.json +38 -2
- package/package.json +2 -2
package/categories.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"knowledge": {
|
|
37
37
|
"name": "knowledge",
|
|
38
38
|
"description": "AI-powered assistance, documentation, help guides, and educational resources for Starknet ecosystem and MCP servers",
|
|
39
|
-
"mcps": ["mcp-doc", "starknet-knowledge"]
|
|
39
|
+
"mcps": ["mcp-doc", "starknet-knowledge", "assist-with-dojo"]
|
|
40
40
|
},
|
|
41
41
|
"tokens": {
|
|
42
42
|
"name": "tokens",
|
|
@@ -52,5 +52,10 @@
|
|
|
52
52
|
"name": "infrastructure",
|
|
53
53
|
"description": "Core blockchain infrastructure including smart contract deployment, transaction operations, and RPC access",
|
|
54
54
|
"mcps": ["contract", "transaction", "starknet-rpc"]
|
|
55
|
+
},
|
|
56
|
+
"privacy": {
|
|
57
|
+
"name": "privacy",
|
|
58
|
+
"description": "Privacy-focused tools and protocols for anonymous transactions and data protection on Starknet",
|
|
59
|
+
"mcps": ["mist-cash"]
|
|
55
60
|
}
|
|
56
61
|
}
|
package/mcps.json
CHANGED
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"troves": {
|
|
129
129
|
"client": {
|
|
130
130
|
"command": "npx",
|
|
131
|
-
"args": ["-y", "@kasarlabs/troves@latest"],
|
|
131
|
+
"args": ["-y", "@kasarlabs/troves-mcp@latest"],
|
|
132
132
|
"transport": "stdio"
|
|
133
133
|
},
|
|
134
134
|
"description": "Troves strategies API for Starknet",
|
|
@@ -365,7 +365,7 @@
|
|
|
365
365
|
"get_pool_liquidity",
|
|
366
366
|
"get_pool_fees_per_liquidity",
|
|
367
367
|
"get_token_price",
|
|
368
|
-
"
|
|
368
|
+
"get_positions",
|
|
369
369
|
"swap",
|
|
370
370
|
"create_position",
|
|
371
371
|
"add_liquidity",
|
|
@@ -541,5 +541,41 @@
|
|
|
541
541
|
"create_swap"
|
|
542
542
|
]
|
|
543
543
|
}
|
|
544
|
+
},
|
|
545
|
+
"mist-cash": {
|
|
546
|
+
"client": {
|
|
547
|
+
"command": "npx",
|
|
548
|
+
"args": ["-y", "@kasarlabs/mist-cash-mcp@latest"],
|
|
549
|
+
"transport": "stdio",
|
|
550
|
+
"env": {
|
|
551
|
+
"STARKNET_RPC_URL": "",
|
|
552
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
553
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
"description": "Mist Cash privacy protocol for confidential transactions on Starknet",
|
|
557
|
+
"promptInfo": {
|
|
558
|
+
"expertise": "Privacy-preserving transactions and deposits/withdrawals on Mist Cash",
|
|
559
|
+
"tools": [
|
|
560
|
+
"mist_cash_deposit",
|
|
561
|
+
"mist_cash_get_chamber_info",
|
|
562
|
+
"mist_cash_withdraw"
|
|
563
|
+
]
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"assist-with-dojo": {
|
|
567
|
+
"client": {
|
|
568
|
+
"command": "npx",
|
|
569
|
+
"args": ["-y", "@kasarlabs/assist-with-dojo-mcp@latest"],
|
|
570
|
+
"transport": "stdio",
|
|
571
|
+
"env": {
|
|
572
|
+
"CAIRO_CODER_API_KEY": ""
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"description": "AI-powered assistance for Dojo game engine development on Starknet. Use for: learning about Dojo, understanding Dojo concepts, building games with Dojo, getting Dojo best practices",
|
|
576
|
+
"promptInfo": {
|
|
577
|
+
"expertise": "Dojo game engine, ECS architecture, onchain gaming on Starknet, Dojo toolchain, and Dojo development patterns",
|
|
578
|
+
"tools": ["assist-with-dojo"]
|
|
579
|
+
}
|
|
544
580
|
}
|
|
545
581
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kasarlabs/ask-starknet-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "0799e2b085e950e5d102822d71a6b122290e8c38"
|
|
55
55
|
}
|