srinikhildurisetti commited on
Commit
3d46d3a
·
1 Parent(s): efe51c1

Update MCP configuration for Claude Desktop

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -64,16 +64,18 @@ demo = gr.Interface(
64
  )
65
 
66
  # Add MCP metadata
67
- organize_goals_into_notion.mcp_type = "tool"
68
- organize_goals_into_notion.mcp_description = "Organize goals into structured Notion tasks"
69
  organize_goals_into_notion.mcp_input_type = "string"
70
  organize_goals_into_notion.mcp_output_type = "json"
 
71
 
72
  if __name__ == "__main__":
73
  demo.queue().launch(
74
  server_name="0.0.0.0",
75
  server_port=7860,
76
- share=False
 
77
  )
78
 
79
 
 
64
  )
65
 
66
  # Add MCP metadata
67
+ organize_goals_into_notion.mcp_type = "function"
68
+ organize_goals_into_notion.mcp_description = "Organize goals into structured Notion tasks. Input should be a natural language description of tasks or goals."
69
  organize_goals_into_notion.mcp_input_type = "string"
70
  organize_goals_into_notion.mcp_output_type = "json"
71
+ organize_goals_into_notion.mcp_name = "organize_goals_into_notion"
72
 
73
  if __name__ == "__main__":
74
  demo.queue().launch(
75
  server_name="0.0.0.0",
76
  server_port=7860,
77
+ share=False,
78
+ api_name="/api"
79
  )
80
 
81