Troubleshoot Amazon Devices Buildertools MCP
This page helps you resolve common issues when setting up and using Amazon Devices Buildertools MCP with your AI agent. Each issue includes the problem description, likely causes, and step-by-step solutions.
For setup instructions, see Set Up Amazon Devices Buildertools MCP.
Common issues
AI agent doesn’t use Amazon Devices Buildertools MCP to answer Vega-related questions
Cause: The MCP server installation or configuration has an issue, or the AI agent requires a restart after configuration.
Solution:
-
Verify MCP server installation:
npx @amazon-devices/amazon-devices-buildertools-mcp@latest --help - Check MCP configuration in your AI agent's settings file.
- Restart your AI agent after configuration changes.
Error message says document isn’t included in amazon-devices-buildertools-mcp version
Cause: The document name contains a typo, the document doesn't exist, or you have an outdated version of the MCP server.
Solution:
-
List available documents:
Show me all the documents in Amazon Devices Buildertools MCP - Verify the availability of the document name and the spelling is accurate.
- Update to latest MCP server version if needed.
AI agent provides generic responses not Vega-specific guidance
Cause: Context initialization didn’t complete, context files are missing, or AI agent isn’t recognizing the context files.
Solution:
-
Verify context initialization is complete:
npx @amazon-devices/amazon-devices-buildertools-mcp@latest --init-context -
Check that context files exist in your project root:
ls AGENTS.mdIf the file doesn't exist: Use the prompt-based alternative instead. In your AI agent prompt, enter:
use amazon-devices-buildertools-mcp for context -
Restart AI agent session and verify context recognition:
3.1 To restart an AI agent, close your current chat conversation and start a new on. 3.2 In the prompt, enter:
use AGENTS.md for context3.3 Ask a Vega-specific question to confirm the agent provides relevant guidance. For example:
Can you list all documents related to feature development on vega?
amazon-devices-buildertools-mcp fails to load
After adding the config, IDE fails to initialize the MCP and displays:
MCP error -32000: Connection closed
Cause: The following issues can cause this:
- Installation failed
- Node version mismatch
Solution:
If installation fails:
Verify the installation works without MCP:
Run npx @amazon-devices/amazon-devices-buildertools-mcp@latest --help
If you still encounter the same issue, run:
npm install -g @amazon-devices/amazon-devices-buildertools-mcp@latest
If Node version mismatches:
Each node version maintains its own copy of “global” installations. To verify that @amazon-devices/amazon-devices-buildertools-mcp@latest appears for your current Node version, run:
npm list -g
For example, nvm use 20 && npm list -g have its own list as compared to nvm use 22 && npm list -g, depending on which Node you used during installation.
amazon-devices-buildertools-mcp doesn’t work with asdf
Cause: asdf is a version manager for installing Node.js. asdf handles Node.js differently from other node managers like nvm. amazon-devices-buildertools-mcp expects a node binary, but asdf creates a shell script, which causes initialization issue for amazon-devices-buildertools-mcp.
When you use asdf, this configuration may work on CLI but can cause IDE issues (MCP error -32000: Connection closed)
"amazon-devices-buildertools-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@amazon-devices/amazon-devices-buildertools-mcp@latest"
]
},
Solution:
-
Install the MCP:
npm install -g @amazon-devices/amazon-devices-buildertools-mcp@latest -
Obtain path of node binary:
% asdf which nodeYou see an output similar to this (it differs based on your ASDF_DATA_DIR setting):
~/ASDF_DATA/installs/nodejs/22.20.0/bin/node -
Obtain path of amazon-devices-buildertools-mcp binary:
% asdf which amazon-devices-buildertools-mcpYou see an output similar to this (it differs based on your ASDF_DATA_DIR setting):
<>/ASDF_DATA/installs/nodejs/22.20.0/bin/amazon-devices-buildertools-mcp -
Update your config using these paths (replace the paths with your actual output and remove comments after updating):
"amazon-devices-buildertools-mcp-npx": { "type": "stdio", "command": "<>/ASDF_DATA/installs/nodejs/22.20.0/bin/node", // path copied from above "args": [ "<>/ASDF_DATA/installs/nodejs/22.20.0/bin/amazon-devices-buildertools-mcp" // path copied from above ] },Related topics
Last updated: Jan 21, 2026

