by fiet-kyo
Amazon Q Custom Prompt MCP Server — serve markdown prompt templates from local files to provide Amazon Q prompts and cus
Serves local markdown files as prompt templates for Amazon Q through the Model Context Protocol. Lets you organize and reuse custom prompts stored as files on your system.
Amazon Q Custom Prompt MCP Server is a community-built MCP server published by fiet-kyo that provides AI assistants with tools and capabilities via the Model Context Protocol. Amazon Q Custom Prompt MCP Server — serve markdown prompt templates from local files to provide Amazon Q prompts and cus It is categorized under file systems, developer tools.
You can install Amazon Q Custom Prompt MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Amazon Q Custom Prompt MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Read, analyze, and understand files in your project
Example
Summarize README, analyze code structure, find TODO comments across codebase
Navigate large codebases 5x faster, understand projects quickly
Create, move, rename, and organize files based on natural language instructions
Example
Organize downloads by file type, rename files following convention, batch process images
Save hours on manual file organization
Search files for patterns, extract data, find information across directories
Example
Find all config files with API keys, extract emails from documents, search logs for errors
Find information instantly instead of manual grep/find
Share your MCP server with the developer community
Strong directory entry: Amazon Q Custom Prompt MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Amazon Q Custom Prompt MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Amazon Q Custom Prompt MCP Server is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired Amazon Q Custom Prompt MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: Amazon Q Custom Prompt MCP Server is the kind of server we cite when onboarding engineers to host + tool permissions.
Amazon Q Custom Prompt MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Amazon Q Custom Prompt MCP Server is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Amazon Q Custom Prompt MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, Amazon Q Custom Prompt MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Amazon Q Custom Prompt MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 45
Amazon Q용 커스텀 프롬프트를 위한 MCP(Model Context Protocol) 서버입니다.
이 MCP 서버는 Amazon Q에서 사용할 수 있는 커스텀 프롬프트를 관리하고 제공합니다. ~/.aws/amazonq/prompts/ 디렉토리에 저장된 마크다운 파일들을 읽어와 MCP 클라이언트에게 프롬프트로 제공합니다.
.md 확장자를 가진 파일들을 자동으로 프롬프트로 인식GitHub Packages에서 패키지를 설치하려면 .npmrc 파일 설정이 필요합니다:
# 프로젝트 루트 또는 홈 디렉토리에 .npmrc 파일 생성
echo "@juvisdiet:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN" >> .npmrc
또는 글로벌 설정:
npm config set @juvisdiet:registry https://npm.pkg.github.com
npm config set //npm.pkg.github.com/:_authToken YOUR_GITHUB_TOKEN
# MCP 설정에서 직접 사용
npx @juvisdiet/q-developer-commands
{
"mcpServers": {
"prompt-mcp": {
"command": "npx",
"args": ["-y", "@juvisdiet/q-developer-commands"]
}
}
}
프롬프트 파일은 ~/.aws/amazonq/prompts/ 디렉토리에 .md 확장자로 저장됩니다.
~/.aws/amazonq/prompts/
├── development-rules.md
├── hello.md
└── pr.md
프롬프트 파일은 마크다운 형식으로 작성하며, YAML front matter가 있는 경우 자동으로 제거됩니다.
---
title: 예시 프롬프트
---
여기에 실제 프롬프트 내용을 작성합니다.
MIT License
Generate boilerplate files, apply templates, create project structures
Example
Create React component with tests and styles, generate OpenAPI spec, scaffold new project
Eliminate repetitive file creation work
Prerequisites
Time Estimate
10-20 minutes including configuration
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server provides file I/O operations (read, write, search, metadata) as tools Claude can invoke with natural language instructions.
Protocols
Compatibility
✓ Use when
Use for code analysis, file organization, content search, template generation, and automating repetitive file operations. Best for local development workflows.
✗ Avoid when
Avoid for system-critical files, sensitive credentials, production environments, or when file integrity is paramount. Don't use on files you can't afford to lose.