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) 540 B
import { Ec2CommandExecutionResult, Ec2CommandContext } from './aws.sso.ec2.types.js'; /** * Formats the result of an executed EC2 command into Markdown * * @param command The shell command that was executed * @param result The execution result from SSM * @param context Context information including instance ID, account, role, region, and suggested roles * @returns Formatted Markdown string */ export declare function formatEc2CommandResult(command: string, result: Ec2CommandExecutionResult, context: Ec2CommandContext): string;