Promptz Developer
STDIOAccess prompts from promptz.dev API within Amazon Q Developer without copy-pasting.
Access prompts from promptz.dev API within Amazon Q Developer without copy-pasting.
Access prompts from promptz.dev directly within Amazon Q Developer.
This MCP server allows to access prompts from the promptz.dev API without copy-pasting, reducing context switching and friction in your development workflow.
The promptz.dev MCP Server provides two main capabilities:
Once the server is connected to Amazon Q Developer, you can use it with natural language like:
Open the Amazon Q Developer MCP client settings file located at ~/.aws/amazonq/mcp.json
The easiest way to use the server is with npx, which doesn't require installation:
{ "mcpServers": { "promptz.dev": { "command": "npx", "args": ["-y", "@promptz/mcp"], "env": { "PROMPTZ_API_URL": "your-api-url-from-promptz.dev", "PROMPTZ_API_KEY": "your-api-key-from-promptz.dev" }, "disabled": false, "autoApprove": [] } } }
git clone https://github.com/cremich/promptz-mcp.git cd promptz-mcp
npm install npm run build
{ "mcpServers": { "promptz.dev": { "command": "node", "args": ["/path/to/promptz-mcp/build/index.js"], "env": { "PROMPTZ_API_URL": "your-api-url-from-promptz.dev", "PROMPTZ_API_KEY": "your-api-key-from-promptz.dev" }, "disabled": false, "autoApprove": [] } } }
If you encounter issues with the server:
~/.promptz/logs/mcp-server.log
# Run with environment variables PROMPTZ_API_URL="your-api-url" PROMPTZ_API_KEY="your-api-key" npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.
For those who want to contribute or modify the server:
# Install dependencies npm install # Build the server npm run build # For development with auto-rebuild npm run watch # Run tests npm test