| 3497 | /* ── OpenCode MCP config (JSON with "mcp" key) ───────────────── */ |
| 3498 | |
| 3499 | int cbm_upsert_opencode_mcp(const char *binary_path, const char *config_path) { |
| 3500 | static const char *const path[] = {"mcp"}; |
| 3501 | return cbm_upsert_json_mcp(binary_path, config_path, path, 1U, CBM_JSON_MCP_LOCAL_ARRAY); |
| 3502 | } |
| 3503 | |
| 3504 | int cbm_remove_opencode_mcp(const char *config_path) { |
| 3505 | static const char *const path[] = {"mcp"}; |
no test coverage detected