1
0

TestMCP_ResourcesList 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. resources_list
  2. {
  3. "jsonrpc": "2.0",
  4. "result": {
  5. "resources": [
  6. {
  7. "description": "Subscribe to task creation events. Receives Task objects when new tasks are created and assigned to you.",
  8. "mimeType": "application/json",
  9. "name": "taskCreated",
  10. "uri": "graphql://subscription/taskCreated"
  11. },
  12. {
  13. "description": "Subscribe to task update events. Receives Task objects when tasks assigned to you are updated.",
  14. "mimeType": "application/json",
  15. "name": "taskUpdated",
  16. "uri": "graphql://subscription/taskUpdated"
  17. },
  18. {
  19. "description": "Subscribe to task deletion events. Receives Task objects when tasks assigned to you are deleted.",
  20. "mimeType": "application/json",
  21. "name": "taskDeleted",
  22. "uri": "graphql://subscription/taskDeleted"
  23. },
  24. {
  25. "description": "Subscribe to new message events. Receives Message objects when messages are sent to you.",
  26. "mimeType": "application/json",
  27. "name": "messageAdded",
  28. "uri": "graphql://subscription/messageAdded"
  29. }
  30. ]
  31. }
  32. }