@lagoon-protocol/lagoon-mcp 0.2.0 → 0.2.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/dist/server.js +1 -1
- package/package.json +13 -1
package/dist/server.js
CHANGED
|
@@ -34,7 +34,7 @@ import { getPortfolioOptimizationPrompt } from './prompts/portfolio-optimization
|
|
|
34
34
|
export function createServer() {
|
|
35
35
|
const server = new McpServer({
|
|
36
36
|
name: 'lagoon-mcp',
|
|
37
|
-
version: '0.2.
|
|
37
|
+
version: '0.2.1',
|
|
38
38
|
});
|
|
39
39
|
// ==========================================
|
|
40
40
|
// Dependency Injection Container
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lagoon-protocol/lagoon-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "MCP server for Lagoon DeFi vault analytics - FOR INFORMATIONAL USE ONLY, NOT FINANCIAL ADVICE. Natural language access to vault data, portfolios, and performance metrics",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,6 +13,18 @@
|
|
|
13
13
|
"./skills": {
|
|
14
14
|
"types": "./dist/skills/index.d.ts",
|
|
15
15
|
"import": "./dist/skills/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./tools": {
|
|
18
|
+
"types": "./dist/tools/registry.d.ts",
|
|
19
|
+
"import": "./dist/tools/registry.js"
|
|
20
|
+
},
|
|
21
|
+
"./core": {
|
|
22
|
+
"types": "./dist/core/container.d.ts",
|
|
23
|
+
"import": "./dist/core/container.js"
|
|
24
|
+
},
|
|
25
|
+
"./cache": {
|
|
26
|
+
"types": "./dist/core/cache-adapter.d.ts",
|
|
27
|
+
"import": "./dist/core/cache-adapter.js"
|
|
16
28
|
}
|
|
17
29
|
},
|
|
18
30
|
"bin": {
|