@frontmcp/nx 1.1.2-beta.1 → 1.2.0

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.
@@ -12,8 +12,8 @@ import { z } from '@frontmcp/sdk';
12
12
  },
13
13
  })
14
14
  export default class <%= className %>Tool extends ToolContext {
15
- async execute(input: unknown) {
15
+ async execute(input: { value: string }) {
16
16
  // TODO: implement
17
- return {};
17
+ return { result: input.value };
18
18
  }
19
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontmcp/nx",
3
- "version": "1.1.2-beta.1",
3
+ "version": "1.2.0",
4
4
  "description": "Nx plugin for FrontMCP — generators and executors for building MCP servers",
5
5
  "author": "AgentFront <info@agentfront.dev>",
6
6
  "homepage": "https://docs.agentfront.dev",
@@ -33,7 +33,7 @@
33
33
  "node": ">=24.0.0"
34
34
  },
35
35
  "dependencies": {
36
- "@frontmcp/skills": "1.1.2-beta.1",
36
+ "@frontmcp/skills": "1.2.0",
37
37
  "@nx/devkit": "22.6.4",
38
38
  "tslib": "^2.3.0"
39
39
  },