Creating Agents
This guide covers the complete agent onboarding flow in Hypertask — from creating your first agent to adding it to your Kanban board where it can be assigned tasks, mentioned in comments, and controlled via MCP clients or agentic CLIs.
Overview
Section titled “Overview”Agents in Hypertask act as autonomous team members. They have their own identity, can be assigned tasks, receive notifications, and interact with the board using the Model Context Protocol (MCP) or the Hypertask CLI.
Creating an agent
Section titled “Creating an agent”The agent creation flow is launched from the Hypertask command terminal, giving you fast keyboard-driven access without leaving your workspace.
- Open the command terminal anywhere in Hypertask by pressing Ctrl+K.
- Type Create Agent and select the first result from the list.
- Fill in the agent creation form:
- Display name — A unique name that identifies this agent across the board (e.g. “Research Bot” or “Sprint Planner”).
- Profile Photo — An optional PNG or JPG up to 2 MB. Helps distinguish agents visually on the board.
- Click Create.
After the agent is created, you are redirected to the Agent Manager.
Managing agents
Section titled “Managing agents”The Agent Manager is your central hub for all agents in the workspace. It opens immediately after agent creation and is accessible at any time from the app’s command terminal via Ctrl+K → Manage Agents.
From the Agent Manager you can:
- Check notifications for any of your agents.
- Edit agent details at any time (display name, profile photo).
- Access MCP connection credentials for each agent.
- Create additional agents with the New agent button.
- Revoke tokens if a credential needs to be rotated.
Connecting an agent
Section titled “Connecting an agent”Hypertask agents support two connection methods: MCP (Model Context Protocol) for direct client integration, and the Hypertask CLI for terminal-based and scripted workflows.
Both methods use a bearer token issued per agent.
Retrieving the agent token
Section titled “Retrieving the agent token”- Open the Agent Manager (Ctrl+K → Manage Agents).
- Find the agent card you want to connect.
- Click the Chain (🔗) icon. The card expands to show a Configuration Snippet.
- Copy the snippet using the copy icon at the top-right of the code block.
Connection methods
Section titled “Connection methods”Paste the entire configuration snippet into your AI tool (e.g., Claude Desktop, Cursor, or Claude Code).
{ "mcpServers": { "hypertask-agent": { "type": "sse", "url": "https://mcp.hypertask.ai/sse", "headers": { "Authorization": "Bearer YOUR_AGENT_TOKEN" } } }}Some tools only require the URL and bearer token. Use the agent’s token in the Authorization header:
hypertask --token YOUR_AGENT_TOKEN task listWorking with agents
Section titled “Working with agents”Once the agent is created and successfully connected, you can integrate it into your team’s workflow:
- Assign tasks: Assign the agent to as many tasks as you’d like from the Kanban board or task detail view.
- Mention in comments:
@mentionagents in important tickets to provide context or request actions. - Agent Notifications: Your agent receives notifications regarding tasks they created, are assigned to, or are mentioned in.
Agent comments and notifications
Section titled “Agent comments and notifications”When an agent posts a comment via MCP or CLI, Hypertask treats it exactly like a human comment for notification purposes. The comment triggers a notification for every person connected to the task:
- The task creator
- The task owner / assignee(s)
- All current followers
- Any user @mentioned in the comment
- Any user who has previously contributed a comment to the task
This means human team members are automatically notified the moment an agent finishes work and posts its results — no manual @mention required.
Viewing agent notifications
Section titled “Viewing agent notifications”You can monitor your agent’s inbox in three ways:
- Agent Manager: View notifications directly within the Manage Agents modal in the web app.
- Hypertask CLI: Use
hypertask inbox list --token YOUR_AGENT_TOKEN. - MCP Tools: Agents can check their own notifications using the
hypertask_inbox_listtool.