- Explore MCP Servers
- claude-dev-setup
Claude Dev Setup
What is Claude Dev Setup
claude-dev-setup is a comprehensive development environment designed for Claude Code, integrating MCP servers, development containers, and capabilities for running long-duration jobs.
Use cases
Use cases include setting up a development environment for Claude Code projects, managing tasks and projects with Monday.com, collaborating on designs with Figma, and automating browser testing with Playwright.
How to use
To use claude-dev-setup, clone the repository, set up environment variables, start the development container using VS Code or Docker Compose, initialize MCP servers, and then start a long-running job using the provided scripts.
Key features
Key features include a pre-configured VS Code Dev Container, Docker-based isolated environment, integration with various tools (like Monday.com and Figma), support for long-running jobs with monitoring and logging, and automated security configurations.
Where to use
claude-dev-setup is suitable for software development, project management, design collaboration, and automated testing in various industries such as technology, design, and project management.
Overview
What is Claude Dev Setup
claude-dev-setup is a comprehensive development environment designed for Claude Code, integrating MCP servers, development containers, and capabilities for running long-duration jobs.
Use cases
Use cases include setting up a development environment for Claude Code projects, managing tasks and projects with Monday.com, collaborating on designs with Figma, and automating browser testing with Playwright.
How to use
To use claude-dev-setup, clone the repository, set up environment variables, start the development container using VS Code or Docker Compose, initialize MCP servers, and then start a long-running job using the provided scripts.
Key features
Key features include a pre-configured VS Code Dev Container, Docker-based isolated environment, integration with various tools (like Monday.com and Figma), support for long-running jobs with monitoring and logging, and automated security configurations.
Where to use
claude-dev-setup is suitable for software development, project management, design collaboration, and automated testing in various industries such as technology, design, and project management.
Content
Claude Code Development Environment Setup
A comprehensive development environment setup for Claude Code with MCP servers, dev containers, and long-running job capabilities.
π Quick Start
-
Clone this repository:
git clone https://github.com/your-username/claude-dev-setup.git cd claude-dev-setup
-
Set up environment variables:
cp .env.example .env # Edit .env with your API tokens
-
Start the dev container:
# Using VS Code Dev Containers extension code . # Or using Docker Compose directly docker-compose up -d
-
Initialize MCP servers:
./.devcontainer/init-mcp.sh
-
Start a long-running job:
./scripts/ten-minute-job.sh
π Table of Contents
β¨ Features
Development Environment
- VS Code Dev Container with pre-configured extensions
- Docker-based isolated development environment
- Zsh with Oh-My-Zsh for enhanced terminal experience
- Git Delta for better diff visualization
MCP (Model Context Protocol) Servers
- Filesystem Server: File operations and project management
- Monday.com Integration: Project management and task tracking
- Figma Integration: Design system access and component management
- Playwright Integration: Browser automation and testing
Long-Running Jobs
- Auto-continuation: Jobs that persist across sessions
- Monitoring: Real-time progress tracking
- Logging: Comprehensive job logging and analysis
- Templates: Pre-built job templates for common tasks
Security & Networking
- Firewall Configuration: Automated network security setup
- Permission Management: Controlled access to system resources
- Token Management: Secure handling of API credentials
π§ Prerequisites
- Docker Desktop or Docker Engine with Docker Compose
- VS Code with Dev Containers extension (recommended)
- Git for version control
- Node.js 20+ (included in container)
Required API Tokens
Service | Required | Purpose | How to Get |
---|---|---|---|
GitHub | β Yes | Repository operations | GitHub Settings β Developer settings β Personal access tokens |
Monday.com | βͺ Optional | Project management | Monday.com β Admin β API |
Figma | βͺ Optional | Design system access | Figma β Settings β Account β Personal access tokens |
π¦ Installation
Method 1: VS Code Dev Container (Recommended)
-
Clone and open in VS Code:
git clone https://github.com/your-username/claude-dev-setup.git cd claude-dev-setup code .
-
When prompted, click βReopen in Containerβ
- VS Code will automatically build and start the dev container
- All dependencies will be installed automatically
-
Set up environment variables:
cp .env.example .env # Edit .env with your API tokens
Method 2: Docker Compose
-
Clone the repository:
git clone https://github.com/your-username/claude-dev-setup.git cd claude-dev-setup
-
Configure environment:
cp .env.example .env # Edit .env with your API tokens
-
Start the container:
docker-compose up -d
-
Access the container:
docker-compose exec claude-dev zsh
Method 3: Local Installation
If you prefer to run without containers:
-
Install Node.js dependencies:
npm install -g \ @anthropic-ai/claude-code \ @modelcontextprotocol/server-filesystem \ @mondaydotcomorg/monday-api-mcp \ @playwright/mcp \ figma-developer-mcp
-
Set up environment:
cp .env.example .env source .env
-
Run initialization scripts:
chmod +x .devcontainer/*.sh scripts/*.sh ./.devcontainer/init-mcp.sh
βοΈ Configuration
Environment Variables
Edit .env
file with your configuration:
# Required: GitHub Personal Access Token
GITHUB_PERSONAL_ACCESS_TOKEN=ghp_your_token_here
# Optional: Monday.com API token
MONDAY_API_TOKEN=your_monday_token_here
# Optional: Figma API token
FIGMA_TOKEN=your_figma_token_here
# Optional: Timezone (defaults to UTC)
TZ=America/New_York
# Optional: Node.js memory limit
NODE_OPTIONS=--max-old-space-size=8192
MCP Server Configuration
MCP servers are automatically configured during container startup. To manually configure:
# Add MCP servers to Claude
claude mcp add filesystem "npx @modelcontextprotocol/server-filesystem /workspace"
claude mcp add monday "npx @mondaydotcomorg/monday-api-mcp --token $MONDAY_API_TOKEN"
claude mcp add playwright "npx @playwright/mcp"
claude mcp add figma "npx figma-developer-mcp --figma-api-key=$FIGMA_TOKEN --stdio"
# Verify configuration
claude mcp list
π― Usage
Quick Commands
# Start MCP servers
./.devcontainer/start-mcps.sh
# Run a 10-minute demo job
./scripts/ten-minute-job.sh
# Start custom long-running job
./scripts/run-long-claude-job.sh "Your task description"
# Monitor job progress
./scripts/monitor-job.sh /workspace/claude-job-*.log
# Check system status
docker-compose ps
ps aux | grep claude
Development Workflow
-
Start development environment:
# Open in VS Code code . # Or start container manually docker-compose up -d
-
Initialize your project:
# Create new project mkdir my-project && cd my-project npm init -y # Start Claude Code claude-code --dangerously-skip-permissions
-
Run long-running analysis:
./scripts/ten-minute-job.sh # Monitor in another terminal tail -f /workspace/claude-job-*.log
Job Templates
Code Analysis
./scripts/run-long-claude-job.sh "
Perform comprehensive code analysis:
1. Review all components for performance issues
2. Identify security vulnerabilities
3. Suggest architectural improvements
4. Generate detailed report with recommendations
"
Documentation Generation
./scripts/run-long-claude-job.sh "
Create comprehensive documentation:
1. Add JSDoc comments to all functions
2. Create API documentation
3. Write usage examples for components
4. Generate architecture diagrams
"
Testing Setup
./scripts/run-long-claude-job.sh "
Set up comprehensive testing infrastructure:
1. Configure Jest and testing libraries
2. Create test files for existing components
3. Set up E2E testing with Playwright
4. Add test coverage reporting
"
π Documentation
- MCP Setup Guide - Detailed MCP server configuration
- Long-Running Jobs - Job management and monitoring
- Dev Container Guide - Container configuration details
- Troubleshooting Guide - Common issues and solutions
π Monitoring and Debugging
Check System Status
# Container status
docker-compose ps
# MCP server status
ps aux | grep mcp
# Claude processes
ps aux | grep claude
# Resource usage
docker stats
Log Files
# MCP server logs
tail -f /tmp/mcp-server.log
tail -f /tmp/monday-mcp.log
tail -f /tmp/figma-mcp.log
tail -f /tmp/playwright-mcp.log
# Job logs
tail -f /workspace/claude-job-*.log
# Container logs
docker-compose logs -f claude-dev
Health Checks
# Test MCP connections
claude mcp test filesystem
claude mcp test monday
claude mcp test playwright
claude mcp test figma
# Network connectivity
ping github.com
curl -I https://api.monday.com
π Troubleshooting
Common Issues
Container Wonβt Start
# Check Docker daemon
docker version
# Check disk space
df -h
# Rebuild container
docker-compose down
docker-compose build --no-cache
docker-compose up -d
MCP Servers Not Working
# Restart MCP servers
pkill -f mcp
./.devcontainer/init-mcp.sh
# Check environment variables
echo $MONDAY_API_TOKEN
echo $FIGMA_TOKEN
# Verify installations
npm list -g | grep mcp
Long-Running Jobs Failing
# Check Claude authentication
claude-code --version
# Verify permissions
ls -la /workspace
# Check available memory
free -m
# Review error logs
grep -i error /workspace/claude-job-*.log
Getting Help
- Check logs for specific error messages
- Review documentation in the
docs/
directory - Search issues in the GitHub repository
- Create an issue with:
- Error messages
- Steps to reproduce
- Environment details (
docker version
,node --version
)
π Security Considerations
- API Tokens: Store in
.env
file, never commit to repository - Permissions: Use
--dangerously-skip-permissions
only in trusted environments - Network: Firewall rules are automatically configured
- Container: Runs with non-root user by default
π€ Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature
- Make your changes and test thoroughly
- Commit your changes:
git commit -m 'Add amazing feature'
- Push to the branch:
git push origin feature/amazing-feature
- Open a Pull Request
Development Guidelines
- Follow existing code style and conventions
- Add documentation for new features
- Test changes in both container and local environments
- Update relevant documentation files
π License
This project is licensed under the MIT License - see the LICENSE file for details.
π Acknowledgments
- Anthropic for Claude Code and MCP protocol
- Microsoft for VS Code Dev Containers
- Docker for containerization platform
- Community contributors for improvements and feedback
π Support
- Documentation: Check the
docs/
directory - Issues: GitHub Issues
- Discussions: GitHub Discussions
Happy Coding with Claude! π