tick-mcp-server
v1.1.3
Published
Model Context Protocol server for Tick.md - enables AI agents to coordinate tasks programmatically
Maintainers
Readme
Tick MCP Server
Model Context Protocol (MCP) server for Tick.md multi-agent coordination. Enables AI agents to use Tick commands for task management and coordination.
Features
- Task Management: Create, claim, release, and complete tasks
- Agent Coordination: Register agents and track their work
- Validation: Validate TICK.md files for errors
- Status Tracking: Get real-time project status
- Comments: Add notes to task history
Installation
From npm (when published)
npm install -g tick-mcp-serverLocal Development
cd mcp
npm install
npm run buildMCP Configuration
Add to your MCP settings file (e.g., claude_desktop_config.json):
{
"mcpServers": {
"tick": {
"command": "node",
"args": ["/path/to/tick-md/mcp/dist/index.js"],
"cwd": "/path/to/your/tick/project"
}
}
}Or use npx (when published):
{
"mcpServers": {
"tick": {
"command": "npx",
"args": ["tick-mcp-server"],
"cwd": "/path/to/your/tick/project"
}
}
}Available Tools
tick_status
Get current project status including tasks, agents, and progress.
Returns: JSON with project overview, agent list, task summary by status
tick_add
Create a new task.
Parameters:
title(required): Task titlepriority: urgent|high|medium|low (default: medium)tags: Array of tagsassignedTo: Agent to assign todescription: Detailed descriptiondependsOn: Array of task IDs this depends onestimatedHours: Estimated hours to complete
Returns: Task ID of created task
tick_claim
Claim a task for an agent.
Parameters:
taskId(required): Task ID (e.g., "TASK-001")agent(required): Agent name (e.g., "@agent-name")
Returns: Confirmation message
tick_release
Release a claimed task back to todo.
Parameters:
taskId(required): Task IDagent(required): Agent name
Returns: Confirmation message
tick_done
Mark a task as complete. Automatically unblocks dependent tasks.
Parameters:
taskId(required): Task IDagent(required): Agent name
Returns: Confirmation message
tick_comment
Add a comment to a task's history.
Parameters:
taskId(required): Task IDagent(required): Agent namenote(required): Comment text
Returns: Confirmation message
tick_validate
Validate TICK.md for errors and warnings.
Returns: JSON with validation results (errors, warnings, summary)
tick_agent_list
List all registered agents.
Parameters:
status(optional): Filter by status (working|idle|offline)type(optional): Filter by type (human|bot)
Returns: JSON with agent list
tick_agent_register
Register a new agent.
Parameters:
name(required): Agent name (e.g., "@bot-name")type: human|bot (default: human)roles: Array of roles (default: ["developer"])status: working|idle|offline (default: idle)
Returns: Confirmation message
Usage Example
Once configured, AI agents (like Claude) can use these tools:
AI: I'll help you create a task for the authentication system.
[Uses tick_add tool with:
title: "Build authentication system"
priority: "high"
tags: ["backend", "security"]
]
AI: I've created TASK-023. Now let me claim it for myself.
[Uses tick_claim tool with:
taskId: "TASK-023"
agent: "@claude-agent"
]
AI: I've claimed the task and I'm working on it now.Architecture
The MCP server uses the shared @tick/core package directly:
AI Agent (Claude/etc)
↓
MCP Protocol
↓
Tick MCP Server
↓
@tick/core (parser / serializer / validation / atomic I/O)
↓
TICK.md FileKey Features
- Single Source of Truth: Uses
@tick/coreshared with CLI and dashboard - Stateless: Each tool call reads/writes TICK.md
- Atomic Writes + Stale Write Guard: Avoids silent clobbering under races
- JSON Responses: Returns structured data for AI consumption
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
# Test (requires a Tick project in the directory)
node dist/index.jsRequirements
- Node.js 18+
- A Tick project (with TICK.md file)
- MCP-compatible AI client
Error Handling
All tools return error messages in the response if something goes wrong:
{
"content": [
{
"type": "text",
"text": "Error: Task TASK-999 not found"
}
],
"isError": true
}Best Practices
- Check Status First: Use
tick_statusto understand the project state - Validate Often: Run
tick_validateafter making changes - Descriptive Comments: Use
tick_commentto explain progress - Proper Workflow: claim → work → comment → done
- Register First: Register as an agent before claiming tasks
License
MIT · Purple Horizons
