-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 2.63 KB
/
Copy path.env.example
File metadata and controls
29 lines (23 loc) · 2.63 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
29
# ── Transport ──────────────────────────────────────────────────────────
# MCP_TRANSPORT_TYPE=stdio # stdio | http (default: stdio)
# MCP_HTTP_PORT=3010 # HTTP port (default: 3010)
# MCP_HTTP_HOST=localhost # HTTP host (default: localhost)
# MCP_HTTP_ENDPOINT_PATH=/mcp # HTTP endpoint path (default: /mcp)
# MCP_HTTP_MAX_BODY_BYTES=1048576 # Max HTTP request body size in bytes (default: 1 MiB; 0 = disable)
# ── Auth ──────────────────────────────────────────────────────────────
# MCP_AUTH_MODE=none # none | jwt | oauth (default: none)
# MCP_AUTH_SECRET_KEY= # JWT secret (required for jwt mode)
# ── Storage ───────────────────────────────────────────────────────────
# STORAGE_PROVIDER_TYPE=in-memory # in-memory | filesystem | supabase | cloudflare-r2 | cloudflare-kv | cloudflare-d1
# ── Session ──────────────────────────────────────────────────────────
# MCP_SESSION_MODE=stateful # stateful | stateless (default: stateful)
# ── Logging ───────────────────────────────────────────────────────────
# MCP_LOG_LEVEL=info # debug | info | notice | warning | error
# ── Telemetry ─────────────────────────────────────────────────────────
# OTEL_ENABLED=false # Enable OpenTelemetry (default: false)
# OTEL_EXPORTER_OTLP_ENDPOINT= # OTLP endpoint URL (e.g., http://localhost:4318)
# ── OpenFEC API ───────────────────────────────────────────────────────
FEC_API_KEY= # Optional. Defaults to DEMO_KEY (30 req/hr). Own key: 1000 req/hr. Get one free at https://api.data.gov/signup/
# FEC_BASE_URL=https://api.open.fec.gov/v1 # OpenFEC API base URL
# FEC_MAX_RETRIES=3 # Max retry attempts for failed requests
# FEC_REQUEST_TIMEOUT=30000 # Request timeout in ms