Build a JSON object from existing JSON values.
(values: BTreeMap<String, Value>)
| 234 | |
| 235 | /// Build a JSON object from existing JSON values. |
| 236 | fn json_map_from_values(values: BTreeMap<String, Value>) -> Map<String, Value> { |
| 237 | json_map_from_pairs(values) |
| 238 | } |
| 239 | |
| 240 | /// Format servers into standard { "mcpServers": { ... } } structure |
| 241 | fn format_standard_mcp(servers: &BTreeMap<&str, &McpServerConfig>) -> Value { |
no test coverage detected