@michaleffffff/mcp-trading-server 3.0.27 → 3.0.28

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.28] - 2026-03-20
4
+ - **Fix**: Disabled problematic Beta mode auto-detection for Arbitrum Sepolia and Linea Sepolia.
5
+ - This restores discovery for standard testnet pools (e.g., ARB/USDC, KNY/USDC) which were previously hidden in the empty beta environment.
6
+ - Users can still manually override via `IS_BETA_MODE=true` in `.env`.
7
+
3
8
  ## 3.0.27 - 2026-03-20
4
9
 
5
10
  ### Fixed
@@ -3,8 +3,8 @@ import { JsonRpcProvider, Wallet } from "ethers";
3
3
  import { normalizeAddress } from "../utils/address.js";
4
4
  let cached = null;
5
5
  const BETA_BROKERS_BY_CHAIN = {
6
- 421614: ["0x895c4ae2a22bb26851011d733a9355f663a1f939"],
7
- 59141: ["0x634efdc9dc76d7abf6e49279875a31b02e9891e2"],
6
+ 421614: [],
7
+ 59141: [],
8
8
  };
9
9
  function getDefaultBrokerByChainId(chainId) {
10
10
  // Testnet mappings
package/dist/server.js CHANGED
@@ -461,7 +461,7 @@ function zodSchemaToJsonSchema(zodSchema) {
461
461
  };
462
462
  }
463
463
  // ─── MCP Server ───
464
- const server = new Server({ name: "myx-mcp-trading-server", version: "3.0.27" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
464
+ const server = new Server({ name: "myx-mcp-trading-server", version: "3.0.28" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
465
465
  // List tools
466
466
  server.setRequestHandler(ListToolsRequestSchema, async () => {
467
467
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@michaleffffff/mcp-trading-server",
3
- "version": "3.0.27",
3
+ "version": "3.0.28",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "myx-mcp": "dist/server.js"