claude-prompts
by minipuft
Overview
This server provides a hot-reloadable prompt engine with chains, quality gates, and structured reasoning for AI assistants, enhancing control over Claude's behavior in prompt workflows.
Installation
npx -y claude-prompts@latestEnvironment Variables
- MCP_WORKSPACE
- MCP_RESOURCES_PATH
- MCP_PROMPTS_PATH
- MCP_METHODOLOGIES_PATH
- MCP_GATES_PATH
- MCP_STYLES_PATH
- MCP_LLM_MODEL
- ANTHROPIC_API_KEY
- OPENAI_API_KEY
- GEMINI_API_KEY
- LOG_LEVEL
Security Notes
The server features allow for arbitrary code execution via user-defined scripts/tools (script-executor.ts) and shell verification commands (shell-verify-executor.ts) within prompts and gates. While internal safeguards like `SAFE_ENV_ALLOWLIST` are present to prevent credential leakage to subprocesses, these features inherently enable execution of arbitrary commands on the host machine. This poses a critical security risk if the server processes untrusted inputs (e.g., a malicious LLM-generated command) or runs in an unsandboxed environment. Users must exercise extreme caution and ensure all prompts and tools are fully trusted and audited, or operate the server within a secure, isolated sandbox.
Similar Servers
Lynkr
Lynkr is an AI orchestration layer that acts as an LLM gateway, routing language model requests to various providers (Ollama, Databricks, OpenAI, etc.). It provides an OpenAI-compatible API and enables AI-driven coding tasks via a rich set of tools and a multi-agent framework, with a strong focus on security, performance, and token efficiency. It allows AI agents to interact with a defined workspace (reading/writing files, executing shell commands, performing Git operations) and leverages long-term memory and agent learning to enhance task execution.
conductor-tasks
Conductor Tasks acts as an intelligent AI-powered assistant for developers, streamlining the entire development lifecycle from task generation and planning (parsing PRDs, expanding tasks, generating implementation steps) to execution and code modification (generating diffs). It provides visual task management, integrates with various IDEs, and leverages multiple LLM providers for optimal results and cost efficiency.
responsible-vibe-mcp
Manages conversation state and guides LLM coding agents through structured software development workflows with long-term project memory and multi-agent collaboration.
codebase-context
Provides AI coding agents with real-time, context-rich insights into a codebase's patterns, libraries, architecture, and conventions to improve code generation quality and alignment with team standards.