Skip to content

MCP Integration

Hypertask provides a full MCP (Model Context Protocol) server that allows AI agents to manage tasks programmatically.

The Model Context Protocol is an open standard that lets AI models interact with external tools and data sources. Hypertask implements an MCP server that exposes task management operations as tools.

Hypertask uses SSE (Server-Sent Events) transport for its MCP server:

{
"mcpServers": {
"hypertasks": {
"type": "sse",
"url": "https://mcp.hypertask.ai/sse",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
ToolDescription
hypertask_list_projectsList all accessible projects
hypertask_list_tasksList tasks on a board
hypertask_get_tasksGet specific tasks by ID
hypertask_create_taskCreate a new task
hypertask_update_taskUpdate task fields
hypertask_search_tasksSearch across all tasks
hypertask_sectionMove a task to a section
hypertask_move_task_between_boardsMove task to another board
hypertask_assign_userAssign a user to a task
hypertask_add_comment_to_taskAdd a comment
hypertask_get_comments_for_taskRead task comments
hypertask_list_project_membersList team members
hypertask_get_user_contextGet current user info
hypertask_inbox_listCheck inbox notifications
hypertask_inbox_archiveArchive inbox items

Hypertask MCP works with any MCP-compatible client:

  • Claude Code (CLI)
  • Claude Desktop
  • Cursor
  • Windsurf
  • Any MCP-compatible agent