MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / tier_tool_set

Function tier_tool_set

src/cli/agent_profiles.c:280–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

278}
279
280static void tier_tool_set(cbm_graph_tier_t tier, const profile_tool_t **tools, size_t *count) {
281 if (tier == CBM_GRAPH_TIER_SCOUT) {
282 *tools = scout_tools;
283 *count = sizeof(scout_tools) / sizeof(scout_tools[0]);
284 } else {
285 *tools = verified_tools;
286 *count = sizeof(verified_tools) / sizeof(verified_tools[0]);
287 }
288}
289
290static const char *tier_server_profile(cbm_graph_tier_t tier) {
291 return tier == CBM_GRAPH_TIER_SCOUT ? "scout" : "analysis";

Callers 5

append_yaml_mcp_toolsFunction · 0.85
append_csv_mcp_toolsFunction · 0.85
append_toml_mcp_toolsFunction · 0.85
render_kiro_profileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected