@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
21 lines (20 loc) • 382 B
TypeScript
/**
* Types for AWS SSO command execution controller
*/
/**
* Result of executing an AWS CLI command
*/
export interface CommandExecutionResult {
/**
* Standard output from the command
*/
stdout: string;
/**
* Standard error from the command
*/
stderr: string;
/**
* Exit code from the command
*/
exitCode: number | null;
}