Connect a client
Point your MCP client at the hosted aidax MCP endpoint:https://one.aidax.io is the aidax cloud origin. If your workspace is on a different aidax domain, use that host instead.Example: Claude
Add aidax as a custom connector and paste the endpoint URL above. Claude walks you through the sign-in, then the aidax tools become available in your conversations.Example: Cursor
Add an MCP server in Cursor’s settings with the URL above, approve the sign-in, and the aidax tools appear to the assistant.What the AI can do
Once connected, the client can use these tools:- Session:
whoami,list_workspaces - Projects:
list_projects,get_project,create_project,update_project,set_project_details,get_project_content,write_project_overview - Tasks:
list_tasks,get_task,create_task,update_task,move_task,update_task_status - Task conversation:
list_task_activity,create_task_comment,read_task_attachment - Task relations:
create_task_relation,get_task_relations,delete_task_relation - Labels:
list_workspace_labels,create_label,attach_label_to_task,detach_label_from_task,delete_label - Memory:
search_memory,list_docs,read_doc - Content files:
list_content_files,read_content_file,write_content_file - Apps and assets:
list_apps,publish_app,list_assets,create_asset
Reading a task’s conversation
list_task_activity returns a task’s timeline: its comments and its events, oldest first. It is
the same thing you see in the task’s Activity tab, so an assistant asking “what has been said
about this task?” gets the whole story, including comments imported from a linked GitHub or Gitea
issue.
Files attached to a comment arrive as a reference — a name, a type, and a link — not as content.
To open one, pass that link to read_task_attachment: text and PDFs come back as text, images
come back as images. Size limits apply, so for a very large document expect to be asked for the
part that matters.
list_task_comments still exists and still answers, but it reads a legacy store the app does not
write to, so it will report nothing for tasks that plainly have comments. Use
list_task_activity.