@kasarlabs/ask-starknet-mcp 0.1.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/LICENSE +21 -0
- package/README.md +197 -0
- package/build/graph/agents/prompts.d.ts +9 -0
- package/build/graph/agents/prompts.d.ts.map +1 -0
- package/build/graph/agents/prompts.js +25 -0
- package/build/graph/agents/prompts.js.map +1 -0
- package/build/graph/agents/selector.d.ts +9 -0
- package/build/graph/agents/selector.d.ts.map +1 -0
- package/build/graph/agents/selector.js +60 -0
- package/build/graph/agents/selector.js.map +1 -0
- package/build/graph/agents/specialized.d.ts +6 -0
- package/build/graph/agents/specialized.d.ts.map +1 -0
- package/build/graph/agents/specialized.js +71 -0
- package/build/graph/agents/specialized.js.map +1 -0
- package/build/graph/graph.d.ts +66 -0
- package/build/graph/graph.d.ts.map +1 -0
- package/build/graph/graph.js +31 -0
- package/build/graph/graph.js.map +1 -0
- package/build/graph/mcps/interfaces.d.ts +27 -0
- package/build/graph/mcps/interfaces.d.ts.map +1 -0
- package/build/graph/mcps/interfaces.js +2 -0
- package/build/graph/mcps/interfaces.js.map +1 -0
- package/build/graph/mcps/utilities.d.ts +15 -0
- package/build/graph/mcps/utilities.d.ts.map +1 -0
- package/build/graph/mcps/utilities.js +76 -0
- package/build/graph/mcps/utilities.js.map +1 -0
- package/build/index.d.ts +32 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +143 -0
- package/build/index.js.map +1 -0
- package/build/utils/llm.d.ts +4 -0
- package/build/utils/llm.d.ts.map +1 -0
- package/build/utils/llm.js +30 -0
- package/build/utils/llm.js.map +1 -0
- package/build/utils/logger.d.ts +6 -0
- package/build/utils/logger.d.ts.map +1 -0
- package/build/utils/logger.js +14 -0
- package/build/utils/logger.js.map +1 -0
- package/mcps.json +436 -0
- package/package.json +57 -0
package/mcps.json
ADDED
|
@@ -0,0 +1,436 @@
|
|
|
1
|
+
{
|
|
2
|
+
"argent": {
|
|
3
|
+
"client": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@kasarlabs/argent-mcp"],
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"env": {
|
|
8
|
+
"STARKNET_RPC_URL": ""
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"description": "Management of Argent accounts on Starknet",
|
|
12
|
+
"promptInfo": {
|
|
13
|
+
"expertise": "Argent wallet accounts on Starknet",
|
|
14
|
+
"tools": ["create_new_argent_account", "deploy_existing_argent_account"]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"erc20": {
|
|
18
|
+
"client": {
|
|
19
|
+
"command": "npx",
|
|
20
|
+
"args": ["-y", "@kasarlabs/erc20-mcp"],
|
|
21
|
+
"transport": "stdio",
|
|
22
|
+
"env": {
|
|
23
|
+
"STARKNET_RPC_URL": "",
|
|
24
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
25
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"description": "Management of ERC20 operations (transfer, balance, deployment) on Starknet",
|
|
29
|
+
"promptInfo": {
|
|
30
|
+
"expertise": "ERC20 tokens on Starknet",
|
|
31
|
+
"tools": [
|
|
32
|
+
"erc20_get_allowance",
|
|
33
|
+
"erc20_get_my_given_allowance",
|
|
34
|
+
"erc20_get_allowance_given_to_me",
|
|
35
|
+
"erc20_get_total_supply",
|
|
36
|
+
"erc20_transfer_from",
|
|
37
|
+
"erc20_get_own_balance",
|
|
38
|
+
"erc20_get_balance",
|
|
39
|
+
"erc20_approve",
|
|
40
|
+
"erc20_transfer",
|
|
41
|
+
"erc20_deploy_new_contract"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"braavos": {
|
|
46
|
+
"client": {
|
|
47
|
+
"command": "npx",
|
|
48
|
+
"args": ["-y", "@kasarlabs/braavos-mcp"],
|
|
49
|
+
"transport": "stdio",
|
|
50
|
+
"env": {
|
|
51
|
+
"STARKNET_RPC_URL": ""
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"description": "Management of Braavos wallet accounts on Starknet",
|
|
55
|
+
"promptInfo": {
|
|
56
|
+
"expertise": "Braavos wallet accounts on Starknet",
|
|
57
|
+
"tools": ["create_new_braavos_account", "deploy_existing_braavos_account"]
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"avnu": {
|
|
61
|
+
"client": {
|
|
62
|
+
"command": "npx",
|
|
63
|
+
"args": ["-y", "@kasarlabs/avnu-mcp"],
|
|
64
|
+
"transport": "stdio",
|
|
65
|
+
"env": {
|
|
66
|
+
"STARKNET_RPC_URL": "",
|
|
67
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
68
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"description": "AVNU decentralized exchange integration for token swaps on Starknet",
|
|
72
|
+
"promptInfo": {
|
|
73
|
+
"expertise": "AVNU DEX token swapping on Starknet",
|
|
74
|
+
"tools": ["avnu_swap_tokens", "avnu_get_route"]
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"erc721": {
|
|
78
|
+
"client": {
|
|
79
|
+
"command": "npx",
|
|
80
|
+
"args": ["-y", "@kasarlabs/erc721-mcp"],
|
|
81
|
+
"transport": "stdio",
|
|
82
|
+
"env": {
|
|
83
|
+
"STARKNET_RPC_URL": "",
|
|
84
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
85
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"description": "Comprehensive ERC721 NFT operations on Starknet",
|
|
89
|
+
"promptInfo": {
|
|
90
|
+
"expertise": "ERC721 NFTs on Starknet",
|
|
91
|
+
"tools": [
|
|
92
|
+
"erc721_owner_of",
|
|
93
|
+
"erc721_get_balance",
|
|
94
|
+
"erc721_is_approved_for_all",
|
|
95
|
+
"erc721_get_approved",
|
|
96
|
+
"erc721_transfer_from",
|
|
97
|
+
"erc721_transfer",
|
|
98
|
+
"erc721_approve",
|
|
99
|
+
"erc721_safe_transfer_from",
|
|
100
|
+
"erc721_set_approval_for_all",
|
|
101
|
+
"deploy_erc721"
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"transaction": {
|
|
106
|
+
"client": {
|
|
107
|
+
"command": "npx",
|
|
108
|
+
"args": ["-y", "@kasarlabs/transaction-mcp"],
|
|
109
|
+
"transport": "stdio",
|
|
110
|
+
"env": {
|
|
111
|
+
"STARKNET_RPC_URL": "",
|
|
112
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
113
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"description": "Transaction simulation tools for Starknet",
|
|
117
|
+
"promptInfo": {
|
|
118
|
+
"expertise": "Transaction simulation on Starknet",
|
|
119
|
+
"tools": [
|
|
120
|
+
"simulate_transaction",
|
|
121
|
+
"simulate_deploy_transaction",
|
|
122
|
+
"simulate_declare_transaction",
|
|
123
|
+
"simulate_deploy_account_transaction"
|
|
124
|
+
]
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"artpeace": {
|
|
128
|
+
"client": {
|
|
129
|
+
"command": "npx",
|
|
130
|
+
"args": ["-y", "@kasarlabs/artpeace-mcp"],
|
|
131
|
+
"transport": "stdio",
|
|
132
|
+
"env": {
|
|
133
|
+
"STARKNET_RPC_URL": "",
|
|
134
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
135
|
+
"STARKNET_PRIVATE_KEY": "",
|
|
136
|
+
"PATH_UPLOAD_DIR": "",
|
|
137
|
+
"SECRET_PHRASE": ""
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"description": "Collaborative pixel art creation on a shared canvas",
|
|
141
|
+
"promptInfo": {
|
|
142
|
+
"expertise": "Pixel art and canvas interaction",
|
|
143
|
+
"tools": ["place_pixel"]
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"contract": {
|
|
147
|
+
"client": {
|
|
148
|
+
"command": "npx",
|
|
149
|
+
"args": ["-y", "@kasarlabs/contract-mcp"],
|
|
150
|
+
"transport": "stdio",
|
|
151
|
+
"env": {
|
|
152
|
+
"STARKNET_RPC_URL": "",
|
|
153
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
154
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"description": "Starknet contract declaration and deployment operations",
|
|
158
|
+
"promptInfo": {
|
|
159
|
+
"expertise": "Smart contract deployment on Starknet",
|
|
160
|
+
"tools": ["declare_contract", "deploy_contract", "get_constructor_params"]
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"fibrous": {
|
|
164
|
+
"client": {
|
|
165
|
+
"command": "npx",
|
|
166
|
+
"args": ["-y", "@kasarlabs/fibrous-mcp"],
|
|
167
|
+
"transport": "stdio",
|
|
168
|
+
"env": {
|
|
169
|
+
"STARKNET_RPC_URL": "",
|
|
170
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
171
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"description": "Fibrous decentralized exchange for single and batch token swaps",
|
|
175
|
+
"promptInfo": {
|
|
176
|
+
"expertise": "Fibrous DEX token swapping",
|
|
177
|
+
"tools": ["fibrous_swap", "fibrous_batch_swap", "fibrous_get_route"]
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"okx": {
|
|
181
|
+
"client": {
|
|
182
|
+
"command": "npx",
|
|
183
|
+
"args": ["-y", "@kasarlabs/okx-mcp"],
|
|
184
|
+
"transport": "stdio",
|
|
185
|
+
"env": {
|
|
186
|
+
"STARKNET_RPC_URL": ""
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"description": "OKX wallet account creation and deployment on Starknet",
|
|
190
|
+
"promptInfo": {
|
|
191
|
+
"expertise": "OKX wallet accounts on Starknet",
|
|
192
|
+
"tools": ["create_new_okx_account", "deploy_existing_okx_account"]
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"openzeppelin": {
|
|
196
|
+
"client": {
|
|
197
|
+
"command": "npx",
|
|
198
|
+
"args": ["-y", "@kasarlabs/openzeppelin-mcp"],
|
|
199
|
+
"transport": "stdio",
|
|
200
|
+
"env": {
|
|
201
|
+
"STARKNET_RPC_URL": ""
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"description": "OpenZeppelin account contract creation and deployment on Starknet",
|
|
205
|
+
"promptInfo": {
|
|
206
|
+
"expertise": "OpenZeppelin accounts on Starknet",
|
|
207
|
+
"tools": [
|
|
208
|
+
"create_new_openzeppelin_account",
|
|
209
|
+
"deploy_existing_openzeppelin_account"
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"opus": {
|
|
214
|
+
"client": {
|
|
215
|
+
"command": "npx",
|
|
216
|
+
"args": ["-y", "@kasarlabs/opus-mcp"],
|
|
217
|
+
"transport": "stdio",
|
|
218
|
+
"env": {
|
|
219
|
+
"STARKNET_RPC_URL": "",
|
|
220
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
221
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"description": "Opus lending protocol for Trove management and borrowing",
|
|
225
|
+
"promptInfo": {
|
|
226
|
+
"expertise": "Opus lending protocol and Trove management",
|
|
227
|
+
"tools": [
|
|
228
|
+
"open_trove",
|
|
229
|
+
"get_user_troves",
|
|
230
|
+
"get_trove_health",
|
|
231
|
+
"get_borrow_fee",
|
|
232
|
+
"deposit_trove",
|
|
233
|
+
"withdraw_trove",
|
|
234
|
+
"borrow_trove",
|
|
235
|
+
"repay_trove"
|
|
236
|
+
]
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"starknet-rpc": {
|
|
240
|
+
"client": {
|
|
241
|
+
"command": "npx",
|
|
242
|
+
"args": ["-y", "@kasarlabs/starknet-rpc-mcp"],
|
|
243
|
+
"transport": "stdio",
|
|
244
|
+
"env": {
|
|
245
|
+
"STARKNET_RPC_URL": ""
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"description": "Direct blockchain interaction via RPC methods for on-chain data access",
|
|
249
|
+
"promptInfo": {
|
|
250
|
+
"expertise": "Starknet RPC and blockchain data",
|
|
251
|
+
"tools": [
|
|
252
|
+
"get_chain_id",
|
|
253
|
+
"get_syncing_status",
|
|
254
|
+
"get_class_hash",
|
|
255
|
+
"get_spec_version",
|
|
256
|
+
"get_block_with_tx_hashes",
|
|
257
|
+
"get_block_with_receipts",
|
|
258
|
+
"get_transaction_status",
|
|
259
|
+
"get_block_number",
|
|
260
|
+
"get_block_transaction_count",
|
|
261
|
+
"get_storage_at",
|
|
262
|
+
"get_class",
|
|
263
|
+
"get_class_at"
|
|
264
|
+
]
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"scarb": {
|
|
268
|
+
"client": {
|
|
269
|
+
"command": "npx",
|
|
270
|
+
"args": ["-y", "@kasarlabs/scarb-mcp"],
|
|
271
|
+
"transport": "stdio"
|
|
272
|
+
},
|
|
273
|
+
"description": "Scarb Cairo compilation and program execution operations",
|
|
274
|
+
"promptInfo": {
|
|
275
|
+
"expertise": "Cairo development and Scarb toolchain",
|
|
276
|
+
"tools": [
|
|
277
|
+
"install_scarb",
|
|
278
|
+
"init_project",
|
|
279
|
+
"build_project",
|
|
280
|
+
"execute_program",
|
|
281
|
+
"prove_program",
|
|
282
|
+
"verify_program"
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"unruggable": {
|
|
287
|
+
"client": {
|
|
288
|
+
"command": "npx",
|
|
289
|
+
"args": ["-y", "@kasarlabs/unruggable-mcp"],
|
|
290
|
+
"transport": "stdio",
|
|
291
|
+
"env": {
|
|
292
|
+
"STARKNET_RPC_URL": "",
|
|
293
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
294
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"description": "Memecoin creation and analysis with focus on safer token launches",
|
|
298
|
+
"promptInfo": {
|
|
299
|
+
"expertise": "Memecoin creation and liquidity management",
|
|
300
|
+
"tools": [
|
|
301
|
+
"is_memecoin",
|
|
302
|
+
"get_locked_liquidity",
|
|
303
|
+
"create_memecoin",
|
|
304
|
+
"launch_on_ekubo"
|
|
305
|
+
]
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"vesu": {
|
|
309
|
+
"client": {
|
|
310
|
+
"command": "npx",
|
|
311
|
+
"args": ["-y", "@kasarlabs/vesu-mcp"],
|
|
312
|
+
"transport": "stdio",
|
|
313
|
+
"env": {
|
|
314
|
+
"STARKNET_RPC_URL": "",
|
|
315
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
316
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"description": "Vesu protocol for deposit and withdrawal operations for earning positions",
|
|
320
|
+
"promptInfo": {
|
|
321
|
+
"expertise": "Vesu protocol yield farming",
|
|
322
|
+
"tools": ["vesu_deposit_earn", "vesu_withdraw_earn"]
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"ekubo": {
|
|
326
|
+
"client": {
|
|
327
|
+
"command": "npx",
|
|
328
|
+
"args": ["-y", "@kasarlabs/ekubo-mcp"],
|
|
329
|
+
"transport": "stdio",
|
|
330
|
+
"env": {
|
|
331
|
+
"STARKNET_RPC_URL": "",
|
|
332
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
333
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"description": "Ekubo decentralized exchange for liquidity management and token swaps",
|
|
337
|
+
"promptInfo": {
|
|
338
|
+
"expertise": "Ekubo DEX liquidity and trading on Starknet",
|
|
339
|
+
"tools": [
|
|
340
|
+
"get_pool_info",
|
|
341
|
+
"get_pool_liquidity",
|
|
342
|
+
"get_pool_fees_per_liquidity",
|
|
343
|
+
"get_token_price",
|
|
344
|
+
"swap",
|
|
345
|
+
"create_position",
|
|
346
|
+
"add_liquidity",
|
|
347
|
+
"withdraw_liquidity",
|
|
348
|
+
"transfer_position"
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"extended": {
|
|
353
|
+
"client": {
|
|
354
|
+
"command": "npx",
|
|
355
|
+
"args": ["-y", "@kasarlabs/extended-mcp"],
|
|
356
|
+
"transport": "stdio",
|
|
357
|
+
"env": {
|
|
358
|
+
"EXTENDED_API_KEY": "",
|
|
359
|
+
"EXTENDED_API_URL": "",
|
|
360
|
+
"EXTENDED_PRIVATE_KEY": ""
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"description": "Extended high-performance perpetuals exchange on Starknet for trading derivatives with on-chain settlement",
|
|
364
|
+
"promptInfo": {
|
|
365
|
+
"expertise": "Perpetual derivatives trading, market data analysis, position and risk management, order execution, and account management on Extended exchange (Starknet L2)",
|
|
366
|
+
"tools": [
|
|
367
|
+
"extended_get_balance",
|
|
368
|
+
"extended_get_user_account_info",
|
|
369
|
+
"extended_get_positions",
|
|
370
|
+
"extended_get_open_orders",
|
|
371
|
+
"extended_get_order_by_id",
|
|
372
|
+
"extended_get_trades_history",
|
|
373
|
+
"extended_get_orders_history",
|
|
374
|
+
"extended_get_positions_history",
|
|
375
|
+
"extended_get_funding_payments",
|
|
376
|
+
"extended_get_leverage",
|
|
377
|
+
"extended_get_fees",
|
|
378
|
+
"extended_get_bridge_config",
|
|
379
|
+
"extended_get_bridge_quote",
|
|
380
|
+
"extended_get_markets",
|
|
381
|
+
"extended_get_market_stats",
|
|
382
|
+
"extended_get_market_orderbook",
|
|
383
|
+
"extended_get_market_trades",
|
|
384
|
+
"extended_get_candles_history",
|
|
385
|
+
"extended_get_funding_rates_history",
|
|
386
|
+
"extended_create_limit_order",
|
|
387
|
+
"extended_create_limit_order_with_tpsl",
|
|
388
|
+
"extended_create_market_order",
|
|
389
|
+
"extended_add_position_tpsl",
|
|
390
|
+
"extended_cancel_order",
|
|
391
|
+
"extended_update_leverage"
|
|
392
|
+
]
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"endurfi": {
|
|
396
|
+
"client": {
|
|
397
|
+
"command": "npx",
|
|
398
|
+
"args": ["-y", "@kasarlabs/endurfi-mcp"],
|
|
399
|
+
"transport": "stdio",
|
|
400
|
+
"env": {
|
|
401
|
+
"STARKNET_RPC_URL": "",
|
|
402
|
+
"STARKNET_ACCOUNT_ADDRESS": "",
|
|
403
|
+
"STARKNET_PRIVATE_KEY": ""
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"description": "Endur.fi liquid staking protocol for STRK and BTC tokens (WBTC, tBTC, LBTC) on Starknet",
|
|
407
|
+
"promptInfo": {
|
|
408
|
+
"expertise": "Liquid staking with xSTRK, xyWBTC, xytBTC, and xyLBTC on Endur.fi",
|
|
409
|
+
"tools": [
|
|
410
|
+
"preview_stake",
|
|
411
|
+
"preview_unstake",
|
|
412
|
+
"get_user_balance",
|
|
413
|
+
"get_total_staked",
|
|
414
|
+
"get_withdraw_request_info",
|
|
415
|
+
"stake",
|
|
416
|
+
"unstake",
|
|
417
|
+
"claim"
|
|
418
|
+
]
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"cairo-coder": {
|
|
422
|
+
"client": {
|
|
423
|
+
"command": "npx",
|
|
424
|
+
"args": ["-y", "@kasarlabs/cairo-coder-mcp"],
|
|
425
|
+
"transport": "stdio",
|
|
426
|
+
"env": {
|
|
427
|
+
"CAIRO_CODER_API_KEY": ""
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"description": "AI-powered Cairo code assistance and Starknet general knowledge via Cairo Coder API",
|
|
431
|
+
"promptInfo": {
|
|
432
|
+
"expertise": "Cairo smart contract development, Starknet technical documentation, ecosystem knowledge, and recent Starknet news",
|
|
433
|
+
"tools": ["assist_with_cairo", "starknet_general_knowledge"]
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kasarlabs/ask-starknet-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "build/index.js",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ask-starknet-mcp": "./build/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc && chmod 755 build/index.js",
|
|
11
|
+
"clean": "rm -rf build",
|
|
12
|
+
"clean:all": "rm -rf build node_modules",
|
|
13
|
+
"start": "node build/index.js",
|
|
14
|
+
"test:routing": "node routing-test.js",
|
|
15
|
+
"test": "node test-env-validation.js",
|
|
16
|
+
"test:integration": "node test-integration.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"build",
|
|
20
|
+
"mcps.json",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"description": "Starknet MCP Server - Model Context Protocol server for Starknet blockchain",
|
|
24
|
+
"author": "Kasar Labs",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"keywords": [
|
|
27
|
+
"mcp",
|
|
28
|
+
"model-context-protocol",
|
|
29
|
+
"starknet",
|
|
30
|
+
"blockchain",
|
|
31
|
+
"ai",
|
|
32
|
+
"server"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@langchain/anthropic": "^0.3.27",
|
|
36
|
+
"@langchain/community": "^0.3.55",
|
|
37
|
+
"@langchain/core": "^0.3.72",
|
|
38
|
+
"@langchain/google-genai": "^0.2.18",
|
|
39
|
+
"@langchain/langgraph": "^0.4.9",
|
|
40
|
+
"@langchain/mcp-adapters": "^0.6.0",
|
|
41
|
+
"@langchain/openai": "^0.6.11",
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.7.0",
|
|
43
|
+
"dotenv": "^16.4.7",
|
|
44
|
+
"zod": "^3.24.2"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^22.13.10",
|
|
48
|
+
"typescript": "^5.8.2"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=18.0.0"
|
|
52
|
+
},
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public"
|
|
55
|
+
},
|
|
56
|
+
"gitHead": "2239ec60f8e369abd318807cecd22fe97c0ab917"
|
|
57
|
+
}
|