UNPKG

@aashari/mcp-server-aws-sso

Version:

Node.js/TypeScript MCP server for AWS Single Sign-On (SSO). Enables AI systems (LLMs) with tools to initiate SSO login (device auth flow), list accounts/roles, and securely execute AWS CLI commands using temporary credentials. Streamlines AI interaction w

11 lines (10 loc) 264 B
import { Command } from 'commander'; /** * Register AWS SSO auth CLI commands * @param program Commander program instance */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;