bigrack.dev
Verified Safeby baptiste-mnh
Overview
Provides intelligent, local-first context and task management for AI assistants like Claude Code and Cursor, enhancing their ability to plan complex features, maintain persistent context, and validate business rules during software development.
Installation
bigrack startEnvironment Variables
- BIGRACK_LOG_LEVEL
- BIGRACK_DEBUG
- BIGRACK_DATABASE_URL
- BIGRACK_VECTOR_SEARCH_MODEL_PATH
- BIGRACK_VECTOR_SEARCH_MODEL_NAME
- BIGRACK_VECTOR_SEARCH_EMBEDDING_DIMENSIONS
- BIGRACK_USER_USERNAME
- BIGRACK_DEFAULT_EDITOR
- VITE_API_HOST
Security Notes
The project is designed as a local-first application, reducing inherent network attack surfaces. It uses SQLite for local storage and Prisma ORM, which generally handles SQL injection risks through parameterized queries. Tool arguments are defined with JSON schemas, indicating input validation. The `execSync` calls in scripts are for known system commands (like `claude mcp list` or `git rev-parse`) which, while `execSync` is generally discouraged for untrusted input, appear to be used in controlled contexts. No obvious `eval` or obfuscation. The local GUI server could have XSS/CSRF concerns, but its local nature mitigates external exploitation. Overall, good practices for a local application, with risks primarily tied to the execution environment or local data handling.
Similar Servers
Delphi-MCP-Server
Implements the Model Context Protocol (MCP) in Delphi to enable AI-powered development workflows and integrate with clients like Claude Code.
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.
claude-faf-mcp
Optimizes AI understanding of software projects by providing persistent context, fixing context-drift, and enabling bi-directional synchronization between project metadata and AI documentation.
MCP-buddy
A local desktop or web application to manage and interact with multiple MCP (Model Context Protocol) servers, offering optional AI orchestration and enhancement for responses.