@aws/nx-plugin-mcp 1.0.0-rc.47 → 1.0.0-rc.48

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/bin/aws-nx-mcp.js CHANGED
@@ -21303,6 +21303,7 @@ const NX_VERSION = {
21303
21303
  "@a2a-js/sdk": "0.3.14",
21304
21304
  "@aws/aws-distro-opentelemetry-node-autoinstrumentation": "0.12.0",
21305
21305
  "@opentelemetry/propagator-jaeger": "2.9.0",
21306
+ minimatch: "10.2.5",
21306
21307
  "@aws-sdk/client-dynamodb": "3.1090.0",
21307
21308
  "@aws-sdk/client-api-gateway": "3.1090.0",
21308
21309
  "@aws-sdk/client-iam": "3.1090.0",
@@ -124,9 +124,9 @@ It creates or updates the following files:
124
124
  - tsconfig.json a root TypeScript config referencing your workspace's projects, which Nx's TypeScript sync keeps up to date
125
125
  - tsconfig.base.json the shared compiler options the plugin's TypeScript projects extend (see below for what it carries)
126
126
  - pnpm-workspace.yaml (pnpm only) allow-lists the build scripts the plugin's dependencies need (`@swc/core`, `esbuild`, `nx`, `sharp`)
127
- - package.json convenience scripts for common tasks, plus the `nx`, `@nx/js`, `@nx/workspace`, `typescript` and Biome dev dependencies
127
+ - package.json convenience scripts for common tasks, plus the `@aws/nx-plugin`, `@aws/nx-plugin-mcp`, `nx`, `@nx/js`, `@nx/workspace`, `typescript` and Biome dev dependencies
128
128
  - biome.json default Biome formatter and linter configuration
129
- - .mcp.json configures the MCP server for supported coding agents unless disabled (also .cursor/, .kiro/, .gemini/, .vscode/ and .codex/ equivalents)
129
+ - .mcp.json configures the MCP server for supported coding agents unless disabled (also .cursor/, .kiro/, .gemini/, .vscode/ and .codex/ equivalents). It runs the workspace's own `@aws/nx-plugin-mcp`, so the server always matches the version installed in your workspace
130
130
  </FileTree>
131
131
 
132
132
  The <Link path="get_started/building-with-ai">MCP server</Link> configuration can be disabled with `--mcp=false`.
@@ -137,6 +137,7 @@ ddb -> sessions: {
137
137
  Before you proceed, you will need the following global dependencies:
138
138
 
139
139
  <Snippet name="required-prerequisites" />
140
+ - [AWS Credentials](https://docs.aws.amazon.com/sdkref/latest/guide/access.html) configured to your target AWS account, since this tutorial deploys the application and invokes Amazon Bedrock
140
141
  - [Docker](https://www.docker.com/) (or [Finch](https://github.com/runfinch/finch)) is required for local DynamoDB development and for building the AgentCore components
141
142
 
142
143
  :::tip[AI Assistant Setup]
@@ -113,10 +113,12 @@ Run tests across all projects:
113
113
 
114
114
  ### Dev
115
115
 
116
- If you have a <Link path="guides/react-website">website</Link>, start it and all connected components locally:
116
+ Start all local development servers across your workspace:
117
117
 
118
118
  <PackageManagerShortCommand commands={["dev"]} />
119
119
 
120
+ See the <Link path="guides/local-development">Local Development</Link> guide for more details.
121
+
120
122
  ### Sync
121
123
 
122
124
  Run any [sync generators](https://nx.dev/concepts/sync-generators), which for example synchronise TypeScript project references (refer to the <Link path="guides/typescript-project">ts#project</Link> generator guide for more details):
@@ -10,7 +10,8 @@ import Snippet from '@components/snippet.astro';
10
10
 
11
11
  ### Recommended
12
12
 
13
- - [Docker](https://www.docker.com/) is required for some generators. [Multi-platform builds](https://docs.docker.com/build/building/multi-platform/) must be set up.
13
+ - [AWS Credentials](https://docs.aws.amazon.com/sdkref/latest/guide/access.html) configured to your target AWS account are required to deploy your application (as well as for some local development workflows).
14
+ - [Docker](https://www.docker.com/) or [Finch](https://runfinch.com/) is required for some generators. For Docker, [multi-platform builds](https://docs.docker.com/build/building/multi-platform/) must be set up; Finch supports [multi-platform builds](https://runfinch.com/docs/getting-started/building-images/#building-a-multi-architecture-container-image) out of the box.
14
15
  - [Terraform >= 1.12](https://developer.hashicorp.com/terraform/install) is required if you choose to use this for infrastructure as code instead of CDK
15
16
  - verify by running `terraform --version`
16
17
  - If you are using [VSCode](https://code.visualstudio.com/), we recommend installing the [Nx Console VSCode Plugin](https://marketplace.visualstudio.com/items?itemName=nrwl.angular-console).
@@ -8,5 +8,4 @@ title: Required Prerequisites
8
8
  - verify by running `pnpm --version`, `yarn --version`, `bun --version` or `npm --version`
9
9
  - [UV >= 0.5.29](https://docs.astral.sh/uv/getting-started/installation/)
10
10
  1. install Python 3.14 by running: `uv python install 3.14.0`
11
- 2. verify with `uv python list --only-installed`
12
- - [AWS Credentials](https://docs.aws.amazon.com/sdkref/latest/guide/access.html) configured to your target AWS account (where your application will be deployed)
11
+ 2. verify with `uv python list --only-installed`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin-mcp",
3
- "version": "1.0.0-rc.47",
3
+ "version": "1.0.0-rc.48",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/awslabs/nx-plugin-for-aws.git",