Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 5 additions & 12 deletions src/anaconda_mcp/mcp_compose.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,13 @@ domain = "anaconda.com"
# ============================================================================

# ============================================================================
# Proxied Streamable HTTP MCP Servers
# Proxied STDIO MCP Servers
# ============================================================================
[[servers.proxied.streamable-http]]
[[servers.proxied.stdio]]
name = "conda"
url = "http://localhost:4041/mcp"
timeout = 30
keep_alive = true
reconnect_on_failure = true
max_reconnect_attempts = 10
health_check_enabled = false
mode = "proxy"
auto_start = true
command = ["python", "-m", "environments_mcp_server", "start", "--transport", "streamable-http", "--port", "4041"]
startup_delay = 3
command = ["python", "-m", "environments_mcp_server", "start", "--transport", "stdio"]
restart_policy = "on-failure"
max_restarts = 3


# ============================================================================
Expand Down
17 changes: 5 additions & 12 deletions src/anaconda_mcp/mcp_compose.toml.template
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,13 @@ domain = "anaconda.com"
# ============================================================================

# ============================================================================
# Proxied Streamable HTTP MCP Servers
# Proxied STDIO MCP Servers
# ============================================================================
[[servers.proxied.streamable-http]]
[[servers.proxied.stdio]]
name = "conda"
url = "http://localhost:4041/mcp"
timeout = 30
keep_alive = true
reconnect_on_failure = true
max_reconnect_attempts = 10
health_check_enabled = false
mode = "proxy"
auto_start = true
command = ["{{PYTHON_EXECUTABLE}}", "-m", "environments_mcp_server", "start", "--transport", "streamable-http", "--port", "4041"]
startup_delay = 3
command = ["{{PYTHON_EXECUTABLE}}", "-m", "environments_mcp_server", "start", "--transport", "stdio"]
restart_policy = "on-failure"
max_restarts = 3


# ============================================================================
Expand Down
Loading