-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
40 lines (31 loc) · 1.53 KB
/
.env.example
File metadata and controls
40 lines (31 loc) · 1.53 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
30
31
32
33
34
35
36
37
38
39
40
# European Parliament MCP Server Configuration
# ======================================
# European Parliament API Configuration
# ======================================
# NOTE: The following configuration variables are documented for reference but
# are NOT currently read by the MCP server. The server uses hard-coded defaults
# unless the client is constructed with an explicit config object. Changing
# these values will have no effect unless the code is updated to read them.
# Base URL for EP Open Data API (optional override)
# Default: https://data.europarl.europa.eu/api/v2/
# EP_API_BASE_URL=https://data.europarl.europa.eu/api/v2/
# Cache configuration (optional)
# CACHE_TTL_MS=900000 # 15 minutes in milliseconds
# CACHE_MAX_SIZE=500 # Maximum number of cached items
# Rate limiting configuration (optional)
# RATE_LIMIT_REQUESTS=100 # Requests per interval
# RATE_LIMIT_INTERVAL=minute # 'second', 'minute', or 'hour'
# ======================================
# Authentication (Not Required)
# ======================================
# The European Parliament Open Data API is publicly accessible
# No API keys or OAuth tokens are required
# Rate limits are enforced: 500 requests per 5 minutes per endpoint
# ======================================
# Development Options
# ======================================
# Use mock data instead of real API (for development/testing)
# NOTE: Not currently supported - server always uses real API
# USE_MOCK_DATA=false
# Log level (for development)
# LOG_LEVEL=info # 'debug', 'info', 'warn', 'error'