forked from Teapot-Agency/mcp_pipedrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 1.01 KB
/
.env.example
File metadata and controls
29 lines (25 loc) · 1.01 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
# Pipedrive API Configuration
PIPEDRIVE_API_TOKEN=your_pipedrive_api_token_here
PIPEDRIVE_DOMAIN=your-company.pipedrive.com
# Optional: JWT Authentication
# Uncomment and configure if you need JWT authentication
# MCP_JWT_SECRET=your_jwt_secret_here
# MCP_JWT_TOKEN=your_jwt_token_here
# MCP_JWT_ALGORITHM=HS256
# MCP_JWT_AUDIENCE=your_audience
# MCP_JWT_ISSUER=your_issuer
# When enabled, clients must send `Authorization: Bearer <token>` to /sse and /message endpoints
# Optional: Rate Limiting Configuration
# Default: 250ms minimum time between requests
PIPEDRIVE_RATE_LIMIT_MIN_TIME_MS=250
# Default: 2 concurrent requests maximum
PIPEDRIVE_RATE_LIMIT_MAX_CONCURRENT=2
# Optional: Transport Configuration
# Default: stdio (standard input/output for local use)
# Set to 'sse' for Server-Sent Events (HTTP) transport (required for Docker/remote access)
MCP_TRANSPORT=stdio
# SSE Transport Configuration (only used when MCP_TRANSPORT=sse)
# Default port: 3000
MCP_PORT=3000
# Default message endpoint: /message
MCP_ENDPOINT=/message