-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 872 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (19 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Plaud Notes MCP Server Configuration
#
# Required: Your Plaud bearer token
# Get it from: web.plaud.ai -> Browser DevTools -> Network tab ->
# Find any request to api.plaud.ai -> Copy the Authorization header value
PLAUD_TOKEN=your_bearer_token_here
# Optional: Region (us or eu). Default: us
# PLAUD_REGION=us
# Optional: Override the API domain directly
# PLAUD_API_DOMAIN=https://api.plaud.ai
# Transport: "stdio" for local Claude, "http" for remote deployment
# PLAUD_TRANSPORT=stdio
# HTTP server settings (only used when PLAUD_TRANSPORT=http)
# PLAUD_MCP_HOST=0.0.0.0
# PLAUD_MCP_PORT=8000
# API key for HTTP transport authentication (strongly recommended)
# Generate one with: python -c "import secrets; print(secrets.token_urlsafe(32))"
# Clients must send this as a Bearer token in the Authorization header.
# PLAUD_MCP_API_KEY=your_generated_api_key_here