-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.env.example
More file actions
49 lines (39 loc) · 1.46 KB
/
.env.example
File metadata and controls
49 lines (39 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
# MCP Hello World Server Configuration
# Copy this file to .env and modify as needed
# Server Settings
MCP_HELLO_SERVER_NAME="Hello World MCP Server"
MCP_HELLO_SERVER_DESCRIPTION="A simple example MCP server demonstrating basic functionality"
MCP_HELLO_VERSION="1.0.0"
# Transport Configuration
# Options: stdio, sse, websocket
MCP_HELLO_TRANSPORT_TYPE="stdio"
MCP_HELLO_HOST="localhost"
MCP_HELLO_PORT="8000"
# Logging Configuration
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
MCP_HELLO_LOG_LEVEL="INFO"
MCP_HELLO_LOG_FORMAT="%(asctime)s - %(name)s - %(levelname)s - %(message)s"
# Feature Flags (true/false)
MCP_HELLO_ENABLE_GREETING_TOOL="true"
MCP_HELLO_ENABLE_SERVER_INFO_TOOL="true"
MCP_HELLO_ENABLE_STATUS_RESOURCE="true"
MCP_HELLO_ENABLE_USAGE_STATS_RESOURCE="true"
MCP_HELLO_ENABLE_FORMAL_GREETING_PROMPT="true"
MCP_HELLO_ENABLE_CASUAL_GREETING_PROMPT="true"
# Customization
MCP_HELLO_DEFAULT_GREETING="Hello"
MCP_HELLO_SERVER_WELCOME_MESSAGE="Welcome to the MCP Hello World server."
# Development Settings
MCP_HELLO_DEBUG_MODE="false"
MCP_HELLO_RELOAD_ON_CHANGE="false"
# Examples for different transport types:
# For stdio transport (default - for Claude Desktop):
# MCP_HELLO_TRANSPORT_TYPE="stdio"
# For SSE transport (for web integrations):
# MCP_HELLO_TRANSPORT_TYPE="sse"
# MCP_HELLO_HOST="0.0.0.0"
# MCP_HELLO_PORT="8000"
# For WebSocket transport (for real-time applications):
# MCP_HELLO_TRANSPORT_TYPE="websocket"
# MCP_HELLO_HOST="0.0.0.0"
# MCP_HELLO_PORT="8001"