@0xmonaco/mcp-server 0.8.7-develop.0e951a5 → 0.8.7-develop.0f12336

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 +2 -4
  2. package/dist/bin.js +114 -94
  3. package/package.json +7 -7
package/README.md CHANGED
@@ -15,14 +15,12 @@ Works in **public-only mode** with zero configuration. Add a private key to unlo
15
15
 
16
16
  ### Networks
17
17
 
18
- Set `MONACO_NETWORK` to one of the following:
18
+ For public endpoints, set `MONACO_NETWORK` to one of the following documented values:
19
19
 
20
20
  | Network | API URL | Default RPC URL |
21
21
  |---------------------|---------------------------------|----------------------------------------|
22
22
  | `mainnet` (default) | `https://api.monaco.xyz` | `https://evm-rpc.sei-apis.com` |
23
- | `development` | `https://develop.apimonaco.xyz` | `https://evm-rpc-testnet.sei-apis.com` |
24
23
  | `staging` | `https://staging.apimonaco.xyz` | `https://evm-rpc-testnet.sei-apis.com` |
25
- | `local` | `http://localhost:8080` | `http://localhost:8545` |
26
24
 
27
25
  ## Installation
28
26
 
@@ -66,7 +64,7 @@ All tools including trading, deposits, withdrawals, and profile.
66
64
  }
67
65
  ```
68
66
 
69
- To connect to a non-mainnet network, add `MONACO_NETWORK` to the `env` block (`mainnet`, `development`, `staging`, `local`). RPC URLs default automatically per network but can be overridden with `MONACO_RPC_URL`.
67
+ To connect to the public testnet, add `MONACO_NETWORK=staging` to the `env` block. RPC URLs default automatically per network but can be overridden with `MONACO_RPC_URL`.
70
68
 
71
69
  ## Tools
72
70