@dimcool/mcp 0.1.24 → 0.1.27

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 (3) hide show
  1. package/README.md +4 -1
  2. package/dist/index.js +1041 -21930
  3. package/package.json +1 -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: 1000000 }
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: "..." }