-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
38 lines (31 loc) · 1.22 KB
/
Copy path.env.example
File metadata and controls
38 lines (31 loc) · 1.22 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
# Example environment configuration for minidump-mcp server
# Copy this file to .env in your project root to use these settings
# Server name
MINIDUMP_MCP_NAME=my-minidump-server
# Logging level (DEBUG, INFO, WARNING, ERROR)
MINIDUMP_MCP_LOG_LEVEL=INFO
# Transport type (stdio, streamable-http, sse)
MINIDUMP_MCP_TRANSPORT=streamable-http
# HTTP transport settings (for streamable-http and sse)
MINIDUMP_MCP_STREAMABLE_HTTP__HOST=127.0.0.1
MINIDUMP_MCP_STREAMABLE_HTTP__PORT=8000
MINIDUMP_MCP_STREAMABLE_HTTP__PATH=/mcp
MINIDUMP_MCP_STREAMABLE_HTTP__CORS_ENABLED=true
MINIDUMP_MCP_STREAMABLE_HTTP__JSON_RESPONSE=false
MINIDUMP_MCP_STREAMABLE_HTTP__STATELESS_HTTP=false
# SSE transport settings
MINIDUMP_MCP_SSE__HOST=127.0.0.1
MINIDUMP_MCP_SSE__PORT=8001
MINIDUMP_MCP_SSE__PATH=/mcp
MINIDUMP_MCP_SSE__MESSAGE_PATH=/message
MINIDUMP_MCP_SSE__SSE_PATH=/sse
MINIDUMP_MCP_SSE__CORS_ENABLED=true
# Common transport settings
MINIDUMP_MCP_STDIO__TIMEOUT=30.0
MINIDUMP_MCP_STREAMABLE_HTTP__TIMEOUT=30.0
MINIDUMP_MCP_SSE__TIMEOUT=30.0
# Client configuration
# These settings control how the client connects to the server
MINIDUMP_MCP_CLIENT_URL=http://localhost:8000/mcp
MINIDUMP_MCP_CLIENT_TRANSPORT=streamable-http
MINIDUMP_MCP_CLIENT_TIMEOUT=30.0