-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 1.21 KB
/
.env.example
File metadata and controls
28 lines (22 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# HacknPlan MCP Server Configuration
# Copy this file to .env and fill in your values
# Required: Your HacknPlan API key
# Get yours from: HacknPlan > Profile > Settings > API Beta > Create
HACKNPLAN_API_KEY=your-api-key-here
# Optional: Default project ID when not specified in tool calls
# HACKNPLAN_DEFAULT_PROJECT=230809
# Optional: Slim mode - expose only 29 core tools instead of all tools
# Set to 'true' for ~75% context savings (reduces from ~117 tools to 29 core tools)
# Default: false (full mode with all tools)
# HACKNPLAN_SLIM_MODE=false
# Deletion Cache Configuration
# Size of the LRU cache for deleted items (default: 1000)
# Used by deletion confirmation system to warn when deletions exceed capacity
HACKNPLAN_DELETION_CACHE_SIZE=1000
# Require 2-step confirmation for ALL deletions (default: false)
# When true: delete_work_item is disabled, must use batch_delete_work_items + confirm_deletion
# When false: delete_work_item stores in recovery cache before deletion (1-step with recovery)
# HACKNPLAN_REQUIRE_DELETE_CONFIRMATION=false
# Optional: Maximum hours to auto-log per session in automatic time tracking (default: 4)
# Sessions exceeding this limit require manual hoursWorked parameter
# MAX_AUTO_LOG_HOURS=4