Treść z repozytorium z zachowaniem nagłówków, przykładów, kodu, tabel, linków i obrazów.
Amazon WorkSpaces Applications — Agent Access
Domain expertise for connecting AI agents to remote Windows desktops on Amazon WorkSpaces Applications (AppStream 2.0) via the managed Agent Access MCP server, and for driving those desktops reliably.
How it works: Agent Access is MCP-only — there is no AWS CLI/SDK command that calls the desktop tools. Agents connect to https://agentaccess-mcp.{region}.api.aws/mcp over Streamable HTTP, SigV4-signed with service name agentaccess-mcp, and call MCP tools (screenshot, left_click, type_text, ...) to drive the desktop. The AWS CLI/SDK is used only for setup — appstream create-streaming-url, fleet/stack configuration. mcp-proxy-for-aws handles the SigV4 signing.
Recommended setup: use mcp-proxy-for-aws (Python) as the transport; it signs each request and manages the DELETE lifecycle. Any MCP client that supports Streamable HTTP + SigV4 works. When running the AWS CLI/SDK setup steps (create-streaming-url, stack/fleet configuration), the AWS MCP server is recommended for sandboxed execution and audit logging.
Guardrail — where this skill's own files live (MCP vs local install)
This skill can be loaded two ways, and they resolve the skill's own bundled files from different places. Determine how the skill was loaded before reading a reference:
- Loaded through the AWS MCP `retrieve_skill` tool: The skill is not installed on the local filesystem. You MUST fetch each reference via
retrieve_skillwith thefileparameter (e.g.file="references/connection-setup.md"), and use the returned content. Do NOTfile_readthese paths locally — they do not exist on disk. - Installed locally (e.g.
.kiro/skills/amazon-workspaces-agent-access/or~/.claude/skills/amazon-workspaces-agent-access/): Read files from the local skill directory using relative paths.
This distinction applies only to the skill's own packaged files. User data and session artifacts are always read from and written to the user's working directory. Never fetch or write customer data through retrieve_skill.
Key facts agents get wrong (load the reference before answering in detail)
These are HTTP headers / metadata on the MCP connection — not tool parameters, and there is no connect_to_desktop tool. Do not invent tools or parameters; the desktop tools are exactly those in tools-reference.md.
- Connect mode. Selected by the `X-Amzn-AgentAccess-Connect-Mode` HTTP header (value
BLOCKING, the default, orPOLLING) — sent on the MCP request alongside the streaming-URL/SAML auth. It is NOT a JSON tool argument. - ❌ WRONG (common hallucination): calling a
connect_to_desktoptool with aconnection_mode: "POLLING"parameter, or asession_id/application_id/user_idargument. None of those exist. - ✅ RIGHT: set the
X-Amzn-AgentAccess-Connect-Mode: POLLINGheader. Thentools/listinitially returns only theconnection_statustool; the agent callsconnection_statusrepeatedly until its returned state isCONNECTED, and only then doestools/listreturn the full desktop tool set (screenshot,left_click, ...). (details: connection-modes.md)
# Correct POLLING usage — the mode is an HTTP header on the MCP connection:
async with aws_iam_streamablehttp_client(
endpoint="https://agentaccess-mcp.us-east-1.api.aws/mcp", # use YOUR fleet's region
aws_service="agentaccess-mcp", aws_region="us-east-1", # region must match the fleet (else 400)
headers={
"X-Amzn-AgentAccess-Streaming-Session-Url": streaming_url,
"X-Amzn-AgentAccess-Connect-Mode": "POLLING", # header, not a tool arg
},
) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
# tools/list now returns ONLY connection_status until the desktop is up:
while json.loads((await session.call_tool("connection_status", {})).content[0].text)["state"] != "CONNECTED":
await asyncio.sleep(2)
tools = await session.list_tools() # now the full desktop tool set- Streaming session (non-domain-joined) is the
X-Amzn-AgentAccess-Streaming-Session-Urlheader. Domain-joined fleets instead pass the SAML assertion + stack ARN via MCP_metakeysaws.agentaccess/workspacesApplicationsSamlAssertionandaws.agentaccess/workspacesApplicationsStackArn. (details: connection-setup.md) - Expire-on-delete is the
X-Amzn-AgentAccess-Expire-Streaming-Session-On-Deleteheader (true/false; default `false`). Expiry happens on the client's explicit HTTPDELETE—mcp-proxy-for-awssends it automatically on clean close. (details: session-lifecycle.md) - Forwarded tools are namespaced by server:
forwarded___<server-name>___<tool-name>(e.g.forwarded___filesystem___read_file) — notforwarded___<tool-name>. (details: tool-forwarding.md) - `COMPUTER_INPUT` requires `COMPUTER_VISION` to also be ENABLED in the stack's
AgentAccessConfig. (details: enabling-agent-access.md)
Routing
| User need | Read |
|---|---|
Enable agent access on a stack (AgentAccessConfig: COMPUTERINPUT/COMPUTERVISION/FORWARDMCPTOOLS, screen resolution/format, prerequisites) — the admin setup step before any agent can connect | enabling-agent-access.md |
| Connect an agent to the MCP server — endpoint, SigV4, streaming URL (non-domain-joined), or Active Directory SAML/Domain Join | connection-setup.md |
Choose BLOCKING vs POLLING; poll connection_status until the desktop is ready | connection-modes.md |
| The computer-use tool set (mouse, keyboard, screenshot) and their parameters | tools-reference.md |
| Automate reliably — screenshot budget, action batching, trusting UI actions, coordinate planning, dialog recovery | automation-best-practices.md |
Expose your own MCP servers on the fleet as forwarded___<server>___<tool> tools; prefer forwarded tools for file/web tasks | tool-forwarding.md |
| Session lifecycle — cleanup, expire-on-delete, idle timeout, one-agent-per-session | session-lifecycle.md |
Debug an error (exact string → cause → fix): dcv session not ready, client_disconnected, 400/401/403, Unknown tool | troubleshooting.md |
Security Considerations
- The agent acts under the caller's AWS identity. Every MCP request is SigV4-signed with service
agentaccess-mcp; the desktop session runs with those credentials. Grant only the specificagentaccess-mcpactions the agent calls (e.g.InvokeMcp,GetScreenshot,LeftClick,TypeText) and scope them with theagentaccess-mcp:StackArncondition key — avoid a blanketagentaccess-mcp:*orResource: *. Prefer IAM roles over long-lived users. (Full action list + example: connection-setup.md → IAM permissions.) - Screenshots can capture sensitive data.
COMPUTER_VISIONcaptures whatever is on the desktop — treat screenshots as potentially containing PII or secrets. If screenshot storage is enabled, the S3 bucket must enforce encryption at rest and in transit and least-privilege access: grant the AppStream service principal only what it needs and the connecting agent onlys3:PutObject(see enabling-agent-access.md). - Enable only the capabilities you need.
COMPUTER_INPUT,COMPUTER_VISION, andFORWARD_MCP_TOOLSare independent — do not enable input/forwarding on stacks that only need vision. - Tool forwarding executes code on the fleet. Forwarded MCP servers run on the instance under the session context. Install only trusted servers system-wide, gate with
FORWARD_MCP_TOOLS, and scope theCallForwardedToolIAM action byagentaccess-mcp:StackArn(see tool-forwarding.md). - Keep a human in the loop where warranted.
UserControlMode: VIEW_STOPlets an observer watch the live session and stop the agent. Treat agent-driven desktop actions as capable of arbitrary UI operations. - Audit with CloudTrail. Agent session events are logged; tool calls are CloudTrail data events and require a trail configured to log them. Create a trail with
agentaccess-mcpdata events enabled, encrypt it with SSE-KMS, and add CloudWatch alarms for anomalous patterns (e.g. high screenshot volume, unexpectedTypeText, repeated auth failures). If screenshot storage is enabled, turn on S3 server access logging for the bucket. - Protect federation material. For domain-joined (SAML) fleets, safeguard the IdP signing certificate and the IAM SAML provider/role trust policy, and do not log the SAML assertion. Traffic is HTTPS + SigV4 — never disable TLS verification.
- Treat typed input as potentially sensitive.
type_textcan enter secrets (passwords, tokens); these may then appear in screenshots, screenshot-storage S3, and CloudTrail data events. Avoid typing long-lived secrets into the desktop where possible, and restrict who can read those sinks. - Refer to the current Agent Access documentation and AWS security best practices for the latest guidance.
Note: Regional endpoints, feature availability, and quotas change. When precision matters, confirm against the current Agent Access MCP server documentation. The references focus on the values and gotchas that are easy to get wrong.

