taskin 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +53 -0
- package/dist/index.js +35 -3651
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -103,6 +103,59 @@ Taskin is built as a modular ecosystem. Besides the CLI, you can use individual
|
|
|
103
103
|
- `taskin pause <id>` - Pause work on a task
|
|
104
104
|
- `taskin finish <id>` - Complete a task
|
|
105
105
|
- `taskin lint` - Validate task files
|
|
106
|
+
- `taskin dashboard` - Start the web dashboard
|
|
107
|
+
- `taskin mcp-server` - Start MCP server for Claude Desktop integration (alias: `mcp`)
|
|
108
|
+
|
|
109
|
+
## 🤖 MCP Server (Model Context Protocol)
|
|
110
|
+
|
|
111
|
+
Taskin includes an MCP server that allows AI assistants like Claude Desktop to interact with your tasks:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
taskin mcp-server
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### Integration with Claude Desktop
|
|
118
|
+
|
|
119
|
+
Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
120
|
+
|
|
121
|
+
```json
|
|
122
|
+
{
|
|
123
|
+
"mcpServers": {
|
|
124
|
+
"taskin": {
|
|
125
|
+
"args": ["taskin@beta", "mcp-server"],
|
|
126
|
+
"command": "npx"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Or if installed globally:
|
|
133
|
+
|
|
134
|
+
```json
|
|
135
|
+
{
|
|
136
|
+
"mcpServers": {
|
|
137
|
+
"taskin": {
|
|
138
|
+
"args": ["mcp-server"],
|
|
139
|
+
"command": "taskin"
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
**Available MCP Tools:**
|
|
146
|
+
|
|
147
|
+
- `start_task` - Start working on a task
|
|
148
|
+
- `finish_task` - Mark a task as finished
|
|
149
|
+
|
|
150
|
+
**Available MCP Prompts:**
|
|
151
|
+
|
|
152
|
+
- `start-task-workflow` - Guide for starting tasks
|
|
153
|
+
- `finish-task-workflow` - Guide for finishing tasks
|
|
154
|
+
- `task-summary` - Get task summary and insights
|
|
155
|
+
|
|
156
|
+
**Available MCP Resources:**
|
|
157
|
+
|
|
158
|
+
- `taskin://tasks` - Access all tasks
|
|
106
159
|
|
|
107
160
|
## 📦 Programmatic Usage
|
|
108
161
|
|