经 AI Skill Hub 精选评估,亚马逊MCP工具 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
亚马逊MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
亚马逊MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/amazon-agi-labs/amazon-nova-act-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"---mcp--": {
"command": "npx",
"args": ["-y", "amazon-nova-act-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 亚马逊MCP工具 执行以下任务... Claude: [自动调用 亚马逊MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"___mcp__": {
"command": "npx",
"args": ["-y", "amazon-nova-act-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
An MCP (Model Context Protocol) server that wraps Amazon Nova Act — AWS's browser automation agent. It enables AI assistants like Claude to control a browser through natural language while maintaining persistent browser sessions across multiple tool calls.
---
NOVA_ACT_API_KEY for quick setup, or AWS IAM credentials for enterprise and production deploymentsstart_browse entry point that triages URLs via fast HTTP fetch first and only opens a full browser session when needed.---
uv — install it with curl -LsSf https://astral.sh/uv/install.sh | shNOVA_ACT_API_KEY---
The recommended way to run amazon-nova-act-mcp is with uvx, which makes the Nova Act MCP server available to your agents from whatever folder you run them. uvx downloads and runs the server from PyPI and doesn't require a separate installation step.
Nova Act MCP server has three setup commands:
| Command | Purpose |
|---|---|
--configure | Quick setup: API key + MCP client config |
--configure-aws | Advanced setup: AWS/IAM auth, AgentCore cloud browsers, and MCP client config |
--configure-local-browser | Sync your Chrome profile for authenticated browser sessions (macOS) |
Quick start (API key):
uvx amazon-nova-act-mcp --configure
AWS/IAM setup (enterprise, AgentCore):
uvx amazon-nova-act-mcp --configure-aws
Note:uvxcaches packages locally and won't automatically pick up new versions. To always run the latest, add--refreshto your args in the MCP client config (see next section), or runuvx --refresh amazon-nova-act-mcp --configureto update and reconfigure.
If you prefer to install Nova Act MCP server within a virtual environment, you can install via pip instead. Once you have activated your virtual environment, run these commands:
pip install amazon-nova-act-mcp
amazon-nova-act-mcp --configure
The configuration wizard will prompt you for credentials and preferences, and write the appropriate environment variables into your MCP client config automatically. The two authentication wizards are additive — you can run --configure first for API key access, then --configure-aws later to add AgentCore support.
---
| I need to... | Use this tool |
|---|---|
| Triage a URL / quick read (auto-chooses HTTP vs browser) | start_browse(url, intent) |
| Open a local browser session for an interactive site | start_browse(url, intent, browser_mode="LOCAL") |
| Open a visible local browser window for debugging | start_browse(url, intent, browser_mode="LOCAL_HEADED") |
| Use your system Chrome profile for a site that requires login | start_browse(url, intent, browser_mode="LOCAL_SYSTEM_DEFAULT") |
| Use AgentCore for a bot-protected or CAPTCHA/challenge-heavy site | start_browse(url, intent, browser_mode="AGENTCORE") |
| Continue interacting with a browser session | act(session_id, prompt) |
| Extract structured data | act_get(session_id, prompt, format) |
| Navigate to an exact URL in an existing session | go_to_url(session_id, url) |
| Get raw page text or HTML from a session | get_page_content(session_id, format) |
| Take a screenshot | screenshot(session_id) |
| Debug active sessions | session_list() |
| Close a session when done | session_close(session_id) |
---
All behaviour can be tuned via environment variables. The --configure and --configure-aws wizards handle the most common ones, but the full set is documented below for more granular control.
Many of the default Nova Act settings can be overridden with environment variables. For example, recording video, setting the logging folder, and setting the model version of Nova Act. Look at the settings.py for a full list.
For local authenticated browser sessions on macOS, you can also set:
| Variable | Description |
|---|---|
NOVA_ACT_SYNC_CHROME_PROFILE_ON_STARTUP | If set to true, syncs your Chrome profile copy into ~/.nova-act/chrome-profile during server startup, without first running --configure-local-browser. |
---
高质量的MCP工具,支持AWS浏览
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:亚马逊MCP工具 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | amazon-nova-act-mcp |
| 原始描述 | 开源MCP工具:An MCP (Model Context Protocol) server that wraps Amazon Nova Act — AWS's browse。⭐10 · Python |
| Topics | mcpamazonpython |
| GitHub | https://github.com/amazon-agi-labs/amazon-nova-act-mcp |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-05-27 · 更新时间:2026-05-30 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端