@kasarlabs/ask-starknet-mcp 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/categories.json +56 -0
  2. package/package.json +3 -2
@@ -0,0 +1,56 @@
1
+ {
2
+ "wallet": {
3
+ "name": "wallet",
4
+ "description": "Creating, deploying, and setting up new wallet accounts on Starknet using different providers",
5
+ "mcps": ["argent", "braavos", "okx", "openzeppelin"]
6
+ },
7
+ "defi": {
8
+ "name": "defi",
9
+ "description": "Interacting with DeFi protocols: swapping tokens on DEXs (AVNU, Fibrous, Ekubo), lending and borrowing (Opus, Vesu), yield strategies (Troves), perpetual trading (Extended)",
10
+ "mcps": [
11
+ "avnu",
12
+ "fibrous",
13
+ "ekubo",
14
+ "opus",
15
+ "vesu",
16
+ "troves",
17
+ "endurfi",
18
+ "extended"
19
+ ]
20
+ },
21
+ "gaming": {
22
+ "name": "gaming",
23
+ "description": "Gaming and interactive applications on Starknet blockchain",
24
+ "mcps": ["artpeace"]
25
+ },
26
+ "bridge": {
27
+ "name": "bridge",
28
+ "description": "Cross-chain asset transfers and bridging operations between different blockchain networks",
29
+ "mcps": ["layerswap", "starkgate"]
30
+ },
31
+ "devtools": {
32
+ "name": "devtools",
33
+ "description": "Developer tools for Cairo development including code assistance, compilation, and build tooling",
34
+ "mcps": ["cairo-coder", "scarb"]
35
+ },
36
+ "knowledge": {
37
+ "name": "knowledge",
38
+ "description": "AI-powered assistance, documentation, help guides, and educational resources for Starknet ecosystem and MCP servers",
39
+ "mcps": ["mcp-doc", "starknet-knowledge"]
40
+ },
41
+ "tokens": {
42
+ "name": "tokens",
43
+ "description": "Standard token operations: ERC20 token transfers, approvals, and balance checks (ETH, USDC, STRK, etc.), ERC721 NFT transfers and ownership queries",
44
+ "mcps": ["erc20", "erc721"]
45
+ },
46
+ "degen": {
47
+ "name": "degen",
48
+ "description": "Memecoin creation and launch tools for degenerates on Starknet",
49
+ "mcps": ["unruggable"]
50
+ },
51
+ "infrastructure": {
52
+ "name": "infrastructure",
53
+ "description": "Core blockchain infrastructure including smart contract deployment, transaction operations, and RPC access",
54
+ "mcps": ["contract", "transaction", "starknet-rpc"]
55
+ }
56
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kasarlabs/ask-starknet-mcp",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "main": "build/index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,6 +15,7 @@
15
15
  "files": [
16
16
  "build",
17
17
  "mcps.json",
18
+ "categories.json",
18
19
  "README.md"
19
20
  ],
20
21
  "description": "Starknet MCP Server - Model Context Protocol server for Starknet blockchain",
@@ -50,5 +51,5 @@
50
51
  "publishConfig": {
51
52
  "access": "public"
52
53
  },
53
- "gitHead": "bfb4d4b055bbfa15b8e745d414adf52ac5e158fb"
54
+ "gitHead": "681dc44b459cd5b3cc8311dde5a65123456b5644"
54
55
  }