@yawlabs/aws-mcp 0.9.5 → 0.9.6

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/README.md CHANGED
@@ -80,7 +80,7 @@ The rest -- SSO device-code re-login, CCAPI CRUD with dry-run diffs, multi-regio
80
80
  | `aws_session_get` | Show the current session defaults and where each value came from (`session`/`env`/`default`). |
81
81
  | `aws_session_clear` | Remove session profile/region overrides so env vars / defaults take over again. No args clears both. |
82
82
  | `aws_list_profiles` | List profiles configured in `~/.aws/config` -- names, regions, and SSO metadata. Use before switching profiles or when an SSO error names one you haven't seen. |
83
- | `aws_assume_role` | Call STS AssumeRole with your current identity and stash the temp creds as a new profile (`mcp-<sessionName>`) in `~/.aws/credentials`. Use for cross-account access. The secret/session token stay on disk -- not returned to the model. |
83
+ | `aws_assume_role` | Call STS AssumeRole with your current identity and stash the temp creds as a new profile (`mcp-<sessionName>`) in `~/.aws/credentials`. Use for cross-account access. The secret/session token stay on disk -- not returned to the model. Optional `timeoutMs` (default 120s) for slow SAML / `credential_process` cold starts. |
84
84
  | `aws_call` | Run any AWS API operation. `service: 's3api', operation: 'list-buckets'`, optional `params` (PascalCase JSON), optional `query` (JMESPath). Returns parsed JSON. |
85
85
  | `aws_paginate` | Fetch one page of a paginated list/describe operation. Supports `query` too. Returns `nextToken`/`hasMore`; call again with the token to continue. |
86
86
  | `aws_logs_tail` | Fetch recent CloudWatch Logs events for a log group. Wraps `aws logs tail --format json` with `since`, `filterPattern`, and stream-name filters; returns events as a parsed array. |
package/dist/index.js CHANGED
@@ -56433,7 +56433,7 @@ var sessionTools = [
56433
56433
  ];
56434
56434
 
56435
56435
  // src/index.ts
56436
- var version2 = true ? "0.9.5" : (await null).createRequire(import.meta.url)("../package.json").version;
56436
+ var version2 = true ? "0.9.6" : (await null).createRequire(import.meta.url)("../package.json").version;
56437
56437
  var subcommand = process.argv[2];
56438
56438
  if (subcommand === "version" || subcommand === "--version") {
56439
56439
  console.log(version2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yawlabs/aws-mcp",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "description": "AWS MCP server — call any AWS API from AI assistants, with first-class SSO re-login (no more 'browser won't open' dead ends)",
5
5
  "license": "MIT",
6
6
  "author": "YawLabs <contact@yaw.sh>",