Spaces:
Runtime error
Runtime error
Update mcp_task_client.py
Browse files- mcp_task_client.py +7 -0
mcp_task_client.py
CHANGED
@@ -9,15 +9,19 @@ async def run():
|
|
9 |
await session.initialize()
|
10 |
|
11 |
# Get task description suggestion using prompt
|
|
|
12 |
prompt_result = await session.get_prompt("task_description", {"task_title": "Do shopping"})
|
13 |
print(f"\nSuggested description: {prompt_result.messages[0].content.text}")
|
14 |
|
15 |
# Display all tasks
|
|
|
16 |
response = await session.read_resource("tasks://list")
|
17 |
tasks = json.loads(json.loads(response.contents[0].text)['contents'][0]['text'])
|
18 |
for task in tasks['tasks']:
|
19 |
print(f"• {task['title']}: {task['description']}")
|
20 |
|
|
|
|
|
21 |
# Add a new task
|
22 |
await session.call_tool("add_task", {
|
23 |
"params": {
|
@@ -25,7 +29,10 @@ async def run():
|
|
25 |
"description": "Order lunch from the local restaurant"
|
26 |
}
|
27 |
})
|
|
|
|
|
28 |
|
|
|
29 |
# Display again all tasks
|
30 |
response = await session.read_resource("tasks://list")
|
31 |
tasks = json.loads(json.loads(response.contents[0].text)['contents'][0]['text'])
|
|
|
9 |
await session.initialize()
|
10 |
|
11 |
# Get task description suggestion using prompt
|
12 |
+
print("Getting prompt...")
|
13 |
prompt_result = await session.get_prompt("task_description", {"task_title": "Do shopping"})
|
14 |
print(f"\nSuggested description: {prompt_result.messages[0].content.text}")
|
15 |
|
16 |
# Display all tasks
|
17 |
+
print("Displaying all tasks...")
|
18 |
response = await session.read_resource("tasks://list")
|
19 |
tasks = json.loads(json.loads(response.contents[0].text)['contents'][0]['text'])
|
20 |
for task in tasks['tasks']:
|
21 |
print(f"• {task['title']}: {task['description']}")
|
22 |
|
23 |
+
|
24 |
+
print("Adding new task....")
|
25 |
# Add a new task
|
26 |
await session.call_tool("add_task", {
|
27 |
"params": {
|
|
|
29 |
"description": "Order lunch from the local restaurant"
|
30 |
}
|
31 |
})
|
32 |
+
print("Task added! \n\n")
|
33 |
+
|
34 |
|
35 |
+
print("Displaying all tasks again...")
|
36 |
# Display again all tasks
|
37 |
response = await session.read_resource("tasks://list")
|
38 |
tasks = json.loads(json.loads(response.contents[0].text)['contents'][0]['text'])
|