@0xmonaco/mcp-server 0.4.2 → 0.5.1

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,17 @@
1
1
  # @0xmonaco/mcp-server
2
2
 
3
+ ## 0.5.1
4
+
5
+ ## 0.5.0
6
+
7
+ ### Minor Changes
8
+
9
+ - 529e401: Refactor vault deposit/withdraw to use asset IDs
10
+
11
+ ### Patch Changes
12
+
13
+ - d8fd27c: Switch balances query to use asset id rather than token contract address.
14
+
3
15
  ## 0.4.2
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xmonaco/mcp-server",
3
- "version": "0.4.2",
3
+ "version": "0.5.1",
4
4
  "type": "module",
5
5
  "description": "MCP server for the Monaco documentation",
6
6
  "engines": {
@@ -42,7 +42,7 @@ import {
42
42
  convertStrToTitle,
43
43
  findNextIteration,
44
44
  loadEnv,
45
- } from "./helpers.js";
45
+ } from "./helpers";
46
46
  export function createTools(server, existingTools) {
47
47
  return __awaiter(this, void 0, void 0, function* () {
48
48
  const toolsDir = path.join(fileURLToPath(import.meta.url), "..", "..");