DefaultConfigPath returns the default MCP config file path.
()
| 179 | |
| 180 | // DefaultConfigPath returns the default MCP config file path. |
| 181 | func DefaultConfigPath() string { |
| 182 | home, _ := os.UserHomeDir() |
| 183 | return filepath.Join(home, ".chatcli", "mcp_servers.json") |
| 184 | } |
| 185 | |
| 186 | // StartAll starts all configured MCP servers. |
| 187 | // |
no outgoing calls