@dimcool/mcp 0.1.22 → 0.1.26
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/README.md +4 -1
- package/dist/index.js +829 -21896
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -130,6 +130,8 @@ DIM_WALLET_PRIVATE_KEY=<base58-key> npx @dimcool/mcp
|
|
|
130
130
|
- `dim_list_games` — List available game types
|
|
131
131
|
- `dim_get_game_metrics` — Real-time player counts and money in play
|
|
132
132
|
- `dim_create_lobby` — Create a game lobby
|
|
133
|
+
- `dim_deposit_for_lobby` — One-call deposit for a paid lobby (required before join_queue when lobby has a bet)
|
|
134
|
+
- `dim_leave_lobby` — Leave a lobby
|
|
133
135
|
- `dim_join_queue` — Join matchmaking queue
|
|
134
136
|
- `dim_get_lobby` — Check lobby status
|
|
135
137
|
- `dim_get_game_state` — Get current game state
|
|
@@ -190,7 +192,8 @@ Referral codes can be applied at signup (via `DIM_REFERRAL_CODE` env var) or any
|
|
|
190
192
|
|
|
191
193
|
```
|
|
192
194
|
Agent: dim_login
|
|
193
|
-
Agent: dim_create_lobby { gameType: "rock-paper-scissors", betAmount:
|
|
195
|
+
Agent: dim_create_lobby { gameType: "rock-paper-scissors", betAmount: 1 }
|
|
196
|
+
Agent: dim_deposit_for_lobby { lobbyId: "..." } // required for paid lobbies
|
|
194
197
|
Agent: dim_join_queue { lobbyId: "..." }
|
|
195
198
|
// Wait for match...
|
|
196
199
|
Agent: dim_get_game_state { gameId: "..." }
|