| Server | Purpose | Use Case |
|---|---|---|
| ticket-docs | Search tk documentation | Help AI understand tk commands and features |
| ticket-mcp | Full issue management tools | Let AI agents create, update, and manage issues |
ticket-docs (Docs MCP)
The docs MCP server gives AI assistants access to search ticket-rs documentation directly.
Setup
- Claude Code
- Cursor
- Windsurf
- Manual
Add to project
.mcp.json:Available Tools
| Tool | Description |
|---|---|
search_docs | Search tk documentation for relevant content |
- “How do I add a dependency between issues?”
- “What does tk triage show?”
- “How do I sync with GitHub?”
ticket-mcp (Agentic Tools)
The ticket-mcp package provides full issue management capabilities, allowing AI agents to create, update, and manage issues directly.
Installation
Requires Python 3.10+ and the
tk binary in PATH. Install tk first: curl -fsSL https://ticket-rs.io/install.sh | bashSetup
- Claude Code
- Cursor
- Manual
Available Tools
Read Operations
| Tool | Description |
|---|---|
ready | Get issues ready to work on (no blocking dependencies) |
list_issues | List issues with optional filters |
show | Show full details for a specific issue |
stats | Get repository statistics |
search | Search issues using TF-IDF similarity |
similar | Find issues similar to a given issue |
Write Operations
| Tool | Description |
|---|---|
create | Create a new issue |
update | Update an existing issue |
close | Close an issue |
launch | Mark an issue as in-progress |
resolve | Resolve an issue (close + show unblocked) |
Dependency Operations
| Tool | Description |
|---|---|
dep_add | Add a dependency between issues |
dep_remove | Remove a dependency between issues |
dep_tree | Show dependency tree for an issue |
dep_cycles | Detect dependency cycles in the graph |
AI/Analytics Operations
| Tool | Description |
|---|---|
triage | THE MEGA-COMMAND: unified recommendations, quick wins, blockers, health |
next_action | Get single top recommendation for next action |
priority | Get PageRank-based priority recommendations |
plan | Get parallel execution plan (topological sort) |
insights | Get graph analytics (PageRank, betweenness, critical path) |
Workflow Operations
| Tool | Description |
|---|---|
prime | Get AI workflow context for the repository |
validate | Validate all issue files |
context | Set or show workspace context |
Discovery Tools
| Tool | Description |
|---|---|
discover_tools | List all available tools (saves context) |
get_tool_info | Get detailed info for a specific tool |
Usage Example
Context Engineering
ticket-mcp is optimized for AI agent efficiency:- Lazy tool loading: Use
discover_tools()first, thenget_tool_info()for details - Minimal models: List views use ~80% less tokens than full issues
- Result compaction: Large result sets are automatically compacted
Which Should I Use?
Docs MCP
Best for learningUse when you want AI to understand tk commands and answer questions about features.
ticket-mcp
Best for automationUse when you want AI agents to actually manage your issues—create, update, close, etc.
Troubleshooting
MCP server not found
MCP server not found
Verify the server is configured:You should see
ticket-docs and/or ticket-mcp in the list.ticket-mcp: tk binary not found
ticket-mcp: tk binary not found
Install the tk binary first:Verify it’s in your PATH:
ticket-mcp: No issues found
ticket-mcp: No issues found
Make sure you’ve set the workspace context and initialized tickets:
Connection errors (docs MCP)
Connection errors (docs MCP)
The docs MCP server requires internet access to reach
docs.ticket.rs. Check your network connection.