kikomiko commited on
Commit
2994e1b
·
verified ·
1 Parent(s): 61220d0

Disable TC tags in MCP challenges query

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -371,8 +371,9 @@ class UltimateTopcoderMCPEngine:
371
  mcp_query["type"] = challenge_type
372
  if track:
373
  mcp_query["track"] = track
374
- if skill_keywords:
375
- mcp_query["tags"] = skill_keywords
 
376
  if query.strip():
377
  mcp_query["search"] = query.strip()
378
 
 
371
  mcp_query["type"] = challenge_type
372
  if track:
373
  mcp_query["track"] = track
374
+ # Commenting this out as it is wrong use of TC tags. This needs fix to proper convert to skills uring the quer-tc-skills tool.
375
+ # if skill_keywords:
376
+ # mcp_query["tags"] = skill_keywords
377
  if query.strip():
378
  mcp_query["search"] = query.strip()
379