devpattern
Verified Safeby agiprolabs
Overview
An MCP server enabling AI clients to perform structured problem-solving, maintain context, manage tasks, and generate documentation across thinking sessions.
Installation
docker run --rm -i -e "TRANSPORT_MODE=stdio" -v /path/to/data:/data ghcr.io/agiprolabs/devpattern:latestEnvironment Variables
- TRANSPORT_MODE
- PORT
- HOST
- DATA_PATH
- DISABLE_THOUGHT_LOGGING
Security Notes
The server primarily uses file-based persistence, which inherently carries risks if the `DATA_PATH` environment variable is misconfigured to a sensitive system directory. However, the code itself properly uses `path.join` and does not expose direct 'eval' or command injection vulnerabilities. Input validation for tools is handled by Zod. In a containerized setup (Docker), specifying a dedicated volume for `/data` mitigates this risk by sandboxing file operations.
Similar Servers
mcp-sequentialthinking-tools
Guides LLM agents in dynamic, sequential problem-solving by tracking thoughts and recommending appropriate MCP tools for each step.
1xn-vmcp
An open-source platform for composing, customizing, and extending multiple Model Context Protocol (MCP) servers into a single logical, virtual MCP server, enabling fine-grained context engineering for AI workflows and agents.
mcp-http-agent-md
This server provides a Minimal Model Context Protocol (MCP) HTTP server for managing AI agent projects, structured tasks, and versioned history, enabling subagent orchestration and document management.
AI-Prompt-Guide-MCP
Orchestrates AI agents for project management and development workflows by linking structured markdown specifications and tasks.