Skip to main content
Glama

promptz.dev MCP Server

by cremich

promptz.dev MCP Server

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.

Features

The promptz.dev MCP Server provides two main capabilities:

  1. Prompts - Executable functions to search and execute prompts.
  2. Rules - Executable functions to search for project rules and by integrating with other tools adding/updating them in your workspace.

Example Usage

Once the server is connected to Amazon Q Developer, you can use it with natural language like:

  • "Search for CLI prompts about JavaScript"
  • "Show me the prompt called 'React Component Documentation'"
  • "Use the React Component Documentation prompt to improve my documentation"
  • "Find project rules for CDK Development"
  • "Add the CDK Project Structure project rule to my workspace"

Installation

Step 1: Get API Credentials

  1. Navigate to https://promptz.dev/mcp
  2. Copy the MCP settings like API Key, API URL or the sample MCP configuration snippet.

Step 2: Install the MCP Server

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:

  1. Add the following configuration to your Amazon Q Developer MCP client's settings file:
{ "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": [] } } }
Option 2: Local Installation
  1. Clone the repository:
git clone https://github.com/cremich/promptz-mcp.git cd promptz-mcp
  1. Install dependencies and build:
npm install npm run build
  1. Add the following configuration to your MCP client's settings file:
{ "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": [] } } }

Troubleshooting

If you encounter issues with the server:

  1. Check that your API credentials are correct
  2. Ensure the server is properly configured in your MCP client
  3. Look for error messages in the logs located ad ~/.promptz/logs/mcp-server.log
  4. Use the MCP Inspector for debugging:
# 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.

Development

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

Security Considerations

  • This server only provides read access to prompts and does not implement any write operations
  • API credentials are stored in your MCP client's configuration file
  • All communication with the promptz.dev API is done via HTTPS
  • The server logs to a file in your home directory (~/.promptz/logs/mcp-server.log)
-
security - not tested
A
license - permissive license
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Allows AI assistants to access prompts from promptz.dev API without copy-pasting, reducing context switching in your development workflow.

  1. Features
    1. Example Usage
      1. Installation
        1. Step 1: Get API Credentials
        2. Step 2: Install the MCP Server
        3. Troubleshooting
      2. Development
        1. Security Considerations

          Related MCP Servers

          • A
            security
            A
            license
            A
            quality
            A model context server that provides prompts that can be used as slash commands for clients like Zed Editor, in order to add page contents as context to the AI assistant.
            Last updated -
            13
            8
            TypeScript
            MIT License
          • -
            security
            A
            license
            -
            quality
            A code ingestion tool that transforms your code into AI-optimized prompts instantly. Gather the relevant context with code2prompt under the hood. Learn more at code2prompt.dev
            Last updated -
            5,865
            MIT License
            • Linux
            • Apple
          • -
            security
            A
            license
            -
            quality
            Provides pre-defined prompt templates for AI assistants to generate comprehensive plans for TypeScript projects, API architectures, and GitHub workflows.
            Last updated -
            0
            TypeScript
            MIT License
          • -
            security
            A
            license
            -
            quality
            An MCP server that analyzes codebases and generates contextual prompts, making it easier for AI assistants to understand and work with code repositories.
            Last updated -
            10
            Python
            MIT License

          View all related MCP servers

          MCP directory API

          We provide all the information about MCP servers via our MCP API.

          curl -X GET 'https://glama.ai/api/mcp/v1/servers/cremich/promptz-mcp'

          If you have feedback or need assistance with the MCP directory API, please join our Discord server