About Promptcaddy
Promptcaddy is an MCP server published by joelgsponer in the Developer Tools category: a lightweight prompt management tool with MCP server and CLI capabilities. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit 11 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx promptcaddyThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Promptcaddy
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
PromptCaddy
A lightweight prompt management tool with MCP server and CLI capabilities.
Overview
PromptCaddy is a Go-based tool for managing, serving, and executing prompts from Markdown files. It can run as a Model Context Protocol (MCP) server or be used directly from the command line.
Features
- MCP server for serving prompts to MCP-compatible hosts
- CLI for listing and calling prompts directly
- Markdown-based prompt storage with frontmatter metadata
- File watching for automatic prompt updates
- Structured prompt management and organization
Installation
# Clone the repository
git clone https://github.com/yourusername/PromptCaddy.git
cd PromptCaddy
# Build the application
go build ./cmd/promptcaddy
Usage
MCP Server Mode
# Start the MCP server
./promptcaddy serve --dir ./prompts
CLI Mode
# List available prompts
./promptcaddy list --dir ./prompts
# Call a specific prompt
./promptcaddy call <prompt-name> --dir ./prompts
Project Structure
PromptCaddy/
├── cmd/
│ └── promptcaddy/ # Main application entry point
├── internal/
│ ├── cli/ # CLI commands (list, call)
│ ├── core/ # Core functionality (prompter, watcher)
│ └── server/ # MCP server implementation
├── prompts/ # Prompt files in Markdown format
├── go.mod # Go module definition
└── README.md # This file
License
This project is licensed under the MIT License.
README mirrored from the source repository 4 months ago. The original is authoritative.