@gala-chain/launchpad-mcp-server 1.24.0 → 1.24.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 +9 -0
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/dist/tools/index.d.ts +2 -2
- package/dist/tools/index.js +3 -3
- package/package.json +1 -1
- package/src/tools/index.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.24.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: Update tool registry validation count from 72 to 74
|
|
8
|
+
- Fixed hard-coded tool count validation that was preventing v1.24.0 from starting
|
|
9
|
+
- Updated from 72 tools to 74 tools to account for 2 new DEX pool discovery tools
|
|
10
|
+
- Updated registry documentation to reflect correct tool distribution
|
|
11
|
+
|
|
3
12
|
## 1.24.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
* @see src/utils/tool-registry.ts
|
|
8
8
|
*/
|
|
9
9
|
/**
|
|
10
|
-
* Enhanced tool registry with validation (
|
|
10
|
+
* Enhanced tool registry with validation (74 tools total):
|
|
11
11
|
* - Pools: 17 tools
|
|
12
12
|
* - Trading: 13 tools
|
|
13
|
-
* - DEX/GalaSwap:
|
|
13
|
+
* - DEX/GalaSwap: 15 tools (5 swap + 8 liquidity + 2 pool discovery)
|
|
14
14
|
* - Balance: 6 tools
|
|
15
15
|
* - Creation: 4 tools
|
|
16
16
|
* - Social: 2 tools
|
package/dist/tools/index.js
CHANGED
|
@@ -64,17 +64,17 @@ const toolCategories = [
|
|
|
64
64
|
},
|
|
65
65
|
];
|
|
66
66
|
/**
|
|
67
|
-
* Enhanced tool registry with validation (
|
|
67
|
+
* Enhanced tool registry with validation (74 tools total):
|
|
68
68
|
* - Pools: 17 tools
|
|
69
69
|
* - Trading: 13 tools
|
|
70
|
-
* - DEX/GalaSwap:
|
|
70
|
+
* - DEX/GalaSwap: 15 tools (5 swap + 8 liquidity + 2 pool discovery)
|
|
71
71
|
* - Balance: 6 tools
|
|
72
72
|
* - Creation: 4 tools
|
|
73
73
|
* - Social: 2 tools
|
|
74
74
|
* - Transfers: 2 tools
|
|
75
75
|
* - Utilities: 15 tools (config, version, environment switching, wallet mgmt, etc.)
|
|
76
76
|
*/
|
|
77
|
-
exports.registry = (0, tool_registry_js_1.createToolRegistry)(toolCategories,
|
|
77
|
+
exports.registry = (0, tool_registry_js_1.createToolRegistry)(toolCategories, 74);
|
|
78
78
|
/**
|
|
79
79
|
* Complete tool array (for backward compatibility)
|
|
80
80
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-mcp-server",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.1",
|
|
4
4
|
"description": "MCP server for Gala Launchpad - 74 tools (pool management, GSwap DEX trading, price history, token creation, wallet management, DEX pool discovery) supporting optional wallet (read-only and full-access modes). Production-grade AI agent integration for Claude Desktop with comprehensive validation and 80%+ test coverage",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
package/src/tools/index.ts
CHANGED
|
@@ -64,17 +64,17 @@ const toolCategories = [
|
|
|
64
64
|
];
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
|
-
* Enhanced tool registry with validation (
|
|
67
|
+
* Enhanced tool registry with validation (74 tools total):
|
|
68
68
|
* - Pools: 17 tools
|
|
69
69
|
* - Trading: 13 tools
|
|
70
|
-
* - DEX/GalaSwap:
|
|
70
|
+
* - DEX/GalaSwap: 15 tools (5 swap + 8 liquidity + 2 pool discovery)
|
|
71
71
|
* - Balance: 6 tools
|
|
72
72
|
* - Creation: 4 tools
|
|
73
73
|
* - Social: 2 tools
|
|
74
74
|
* - Transfers: 2 tools
|
|
75
75
|
* - Utilities: 15 tools (config, version, environment switching, wallet mgmt, etc.)
|
|
76
76
|
*/
|
|
77
|
-
export const registry = createToolRegistry(toolCategories,
|
|
77
|
+
export const registry = createToolRegistry(toolCategories, 74);
|
|
78
78
|
|
|
79
79
|
/**
|
|
80
80
|
* Complete tool array (for backward compatibility)
|