sallima commited on
Commit
fe8e34a
·
verified ·
1 Parent(s): 917b3f5
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -282,11 +282,11 @@ with gr.Blocks(title="Enhanced MCP Coding Guidelines Server") as demo:
282
  )
283
 
284
  # Register MCP API endpoints
285
- gr.api(fn=list_rules, name="list_rules")
286
- gr.api(fn=fetch_rule, name="fetch_rule")
287
- gr.api(fn=get_guidelines_for_stack, name="get_guidelines_for_stack")
288
- gr.api(fn=analyze_project_stack, name="analyze_project_stack")
289
- gr.api(fn=extract_available_technologies, name="extract_available_technologies")
290
 
291
  if __name__ == "__main__":
292
  demo.launch(mcp_server=True)
 
282
  )
283
 
284
  # Register MCP API endpoints
285
+ gr.api(fn=list_rules)
286
+ gr.api(fn=fetch_rule)
287
+ gr.api(fn=get_guidelines_for_stack)
288
+ gr.api(fn=analyze_project_stack)
289
+ gr.api(fn=extract_available_technologies)
290
 
291
  if __name__ == "__main__":
292
  demo.launch(mcp_server=True)