# direnv configuration for mcp-browser project
# This file automatically adds the project's bin directory to PATH

# Add project bin directory to PATH for local development
export PATH="$(pwd)/bin:$PATH"

# Optional: Set environment variables for development
export MCP_BROWSER_ENV="development"

# Optional: Automatically activate venv (uncomment if desired)
# if [[ -d .venv ]]; then
#     source .venv/bin/activate
# fi

# Show which version will be used
echo "mcp-browser: Using local development version ($(pwd)/bin/mcp-browser)"
echo "Run 'mcp-browser --version-info' for details"