-
Notifications
You must be signed in to change notification settings - Fork 16
add Amazon Q Developer CLI usage example #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughAdds a new “Amazon A Developer CLI” section to README.md with a JSON MCP configuration snippet, links to MCP docs, and reorganized installation/configuration text. No source code or API changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal). Please share your feedback with us on this Discord post. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<summary><strong> Amazon A Developer CLI</strong></summary> | ||
|
||
**Via Config File**: Add to `~/.aws/amazonq/mcp.json`: | ||
|
||
```json | ||
{ | ||
"mcpServers": { | ||
"apple-docs": { | ||
"command": "npx", | ||
"args": ["-y", "@kimsungwhee/apple-docs-mcp"] | ||
} | ||
} | ||
} | ||
``` | ||
|
||
[📖 Amazon A Developer CLI MCP docs](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/qdev-mcp.html) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the product name and align with the current Amazon Q CLI config path.
This section calls the tool “Amazon A Developer CLI”, but AWS branding and documentation consistently call it “Amazon Q Developer CLI”, so the typo will confuse readers. In addition, Amazon Q CLI’s July 31 2025 custom-agent update moved MCP configuration into ~/.aws/amazonq/cli-agents/…
; pointing users to ~/.aws/amazonq/mcp.json
is now legacy and won’t load on fresh installs. Please update the heading/link text to “Amazon Q Developer CLI” and rewrite the example to show how to add the mcpServers
block inside an agent file under the new cli-agents
directory (or otherwise follow the updated agent format).(aws.amazon.com)
🤖 Prompt for AI Agents
In README.md around lines 180 to 196, fix the product name and update the MCP
config path: change the heading/link text from “Amazon A Developer CLI” to
“Amazon Q Developer CLI” and update the example to show adding the mcpServers
block inside an agent file under ~/.aws/amazonq/cli-agents/ (follow the new
agent file format used by the July 31 2025 update) instead of referencing the
legacy ~/.aws/amazonq/mcp.json path; ensure the example reflects the new agent
file location and format and update the accompanying link text to match the
corrected product name.
I've added the configuration to use this MCP server in Amazon Q Developer CLI.
Summary by CodeRabbit