@vinkius-core/mcp-fusion-aws 1.0.1 → 3.1.5

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.
Files changed (2) hide show
  1. package/README.md +77 -77
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,77 +1,77 @@
1
- <p align="center">
2
- <h1 align="center">@vinkius-core/mcp-fusion-aws</h1>
3
- <p align="center">
4
- <strong>AWS Lambda & Step Functions Connector</strong> — Auto-discover cloud functions as MCP tools
5
- </p>
6
- </p>
7
-
8
- <p align="center">
9
- <a href="https://www.npmjs.com/package/@vinkius-core/mcp-fusion-aws"><img src="https://img.shields.io/npm/v/@vinkius-core/mcp-fusion-aws?color=blue" alt="npm" /></a>
10
- <a href="https://github.com/vinkius-labs/mcp-fusion/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-green" alt="License" /></a>
11
- <img src="https://img.shields.io/badge/node-%3E%3D18-brightgreen" alt="Node" />
12
- </p>
13
-
14
- ---
15
-
16
- > AWS Lambda & Step Functions connector for MCP Fusion. Auto-discovers tagged resources and produces GroupedToolBuilders — so AI agents can invoke your cloud functions natively.
17
-
18
- ## Quick Start
19
-
20
- ```typescript
21
- import { initFusion } from '@vinkius-core/mcp-fusion';
22
- import { discoverLambdas } from '@vinkius-core/mcp-fusion-aws';
23
-
24
- const f = initFusion<AppContext>();
25
- const registry = f.registry();
26
-
27
- // Auto-discover Lambda functions tagged with mcp-fusion:true
28
- await discoverLambdas(registry, {
29
- region: 'us-east-1',
30
- tagFilter: { 'mcp-fusion': 'true' },
31
- });
32
- ```
33
-
34
- ## Features
35
-
36
- | Feature | Description |
37
- |---------|-------------|
38
- | **Auto-Discovery** | Scans AWS for Lambda functions tagged for MCP exposure |
39
- | **Step Functions** | Trigger and poll state machines as long-running MCP actions |
40
- | **GroupedToolBuilders** | Each Lambda becomes a typed MCP tool with Zod validation |
41
- | **IAM Integration** | Uses your existing AWS credentials and IAM roles |
42
- | **Multi-Region** | Discover across multiple regions simultaneously |
43
-
44
- ## Step Functions
45
-
46
- ```typescript
47
- import { discoverStepFunctions } from '@vinkius-core/mcp-fusion-aws';
48
-
49
- await discoverStepFunctions(registry, {
50
- region: 'us-east-1',
51
- prefix: 'mcp-',
52
- });
53
- ```
54
-
55
- ## Installation
56
-
57
- ```bash
58
- npm install @vinkius-core/mcp-fusion-aws @aws-sdk/client-lambda
59
- ```
60
-
61
- ### Peer Dependencies
62
-
63
- | Package | Version |
64
- |---------|---------|
65
- | `@vinkius-core/mcp-fusion` | `^2.0.0` |
66
- | `@aws-sdk/client-lambda` | `^3.0.0` (optional) |
67
- | `@aws-sdk/client-sfn` | `^3.0.0` (optional) |
68
-
69
- ## Requirements
70
-
71
- - **Node.js** ≥ 18.0.0
72
- - **MCP Fusion** ≥ 2.0.0 (peer dependency)
73
- - AWS credentials configured (env vars, IAM role, or AWS config file)
74
-
75
- ## License
76
-
77
- [Apache-2.0](https://github.com/vinkius-labs/mcp-fusion/blob/main/LICENSE)
1
+ <p align="center">
2
+ <h1 align="center">@vinkius-core/mcp-fusion-aws</h1>
3
+ <p align="center">
4
+ <strong>AWS Lambda & Step Functions Connector</strong> — Auto-discover cloud functions as MCP tools
5
+ </p>
6
+ </p>
7
+
8
+ <p align="center">
9
+ <a href="https://www.npmjs.com/package/@vinkius-core/mcp-fusion-aws"><img src="https://img.shields.io/npm/v/@vinkius-core/mcp-fusion-aws?color=blue" alt="npm" /></a>
10
+ <a href="https://github.com/vinkius-labs/mcp-fusion/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-green" alt="License" /></a>
11
+ <img src="https://img.shields.io/badge/node-%3E%3D18-brightgreen" alt="Node" />
12
+ </p>
13
+
14
+ ---
15
+
16
+ > AWS Lambda & Step Functions connector for MCP Fusion. Auto-discovers tagged resources and produces GroupedToolBuilders — so AI agents can invoke your cloud functions natively.
17
+
18
+ ## Quick Start
19
+
20
+ ```typescript
21
+ import { initFusion } from '@vinkius-core/mcp-fusion';
22
+ import { discoverLambdas } from '@vinkius-core/mcp-fusion-aws';
23
+
24
+ const f = initFusion<AppContext>();
25
+ const registry = f.registry();
26
+
27
+ // Auto-discover Lambda functions tagged with mcp-fusion:true
28
+ await discoverLambdas(registry, {
29
+ region: 'us-east-1',
30
+ tagFilter: { 'mcp-fusion': 'true' },
31
+ });
32
+ ```
33
+
34
+ ## Features
35
+
36
+ | Feature | Description |
37
+ |---------|-------------|
38
+ | **Auto-Discovery** | Scans AWS for Lambda functions tagged for MCP exposure |
39
+ | **Step Functions** | Trigger and poll state machines as long-running MCP actions |
40
+ | **GroupedToolBuilders** | Each Lambda becomes a typed MCP tool with Zod validation |
41
+ | **IAM Integration** | Uses your existing AWS credentials and IAM roles |
42
+ | **Multi-Region** | Discover across multiple regions simultaneously |
43
+
44
+ ## Step Functions
45
+
46
+ ```typescript
47
+ import { discoverStepFunctions } from '@vinkius-core/mcp-fusion-aws';
48
+
49
+ await discoverStepFunctions(registry, {
50
+ region: 'us-east-1',
51
+ prefix: 'mcp-',
52
+ });
53
+ ```
54
+
55
+ ## Installation
56
+
57
+ ```bash
58
+ npm install @vinkius-core/mcp-fusion-aws @aws-sdk/client-lambda
59
+ ```
60
+
61
+ ### Peer Dependencies
62
+
63
+ | Package | Version |
64
+ |---------|---------|
65
+ | `@vinkius-core/mcp-fusion` | `^2.0.0` |
66
+ | `@aws-sdk/client-lambda` | `^3.0.0` (optional) |
67
+ | `@aws-sdk/client-sfn` | `^3.0.0` (optional) |
68
+
69
+ ## Requirements
70
+
71
+ - **Node.js** ≥ 18.0.0
72
+ - **MCP Fusion** ≥ 2.0.0 (peer dependency)
73
+ - AWS credentials configured (env vars, IAM role, or AWS config file)
74
+
75
+ ## License
76
+
77
+ [Apache-2.0](https://github.com/vinkius-labs/mcp-fusion/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vinkius-core/mcp-fusion-aws",
3
- "version": "1.0.1",
3
+ "version": "3.1.5",
4
4
  "description": "AWS Lambda & Step Functions connector for MCP Fusion. Auto-discovers tagged resources and produces GroupedToolBuilders — so AI agents can invoke your cloud functions natively.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",