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

15 lines (14 loc) 550 B
#!/usr/bin/env node import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { Logger } from './utils/logger.util.js'; import { config } from './utils/config.util.js'; /** * Start the MCP server with the specified transport mode * * @param mode The transport mode to use (stdio or sse) * @returns Promise that resolves when the server is started */ export declare function startServer(mode?: 'stdio' | 'sse'): Promise<McpServer>; export { config }; export { Logger }; export { PACKAGE_NAME } from './utils/constants.util.js';