mcp-intervals 1.0.1 → 1.0.2
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 +18 -11
- package/dist/index.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,6 +16,13 @@ MCP server for [Intervals](https://www.myintervals.com/) task management. Lets C
|
|
|
16
16
|
### 2. Install in Claude Code
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
+
# Available in all your projects (recommended)
|
|
20
|
+
claude mcp add intervals --scope user -e INTERVALS_API_TOKEN=YOUR_TOKEN -- npx -y mcp-intervals
|
|
21
|
+
|
|
22
|
+
# Only in the current project, shared with team via .mcp.json (committed to git)
|
|
23
|
+
claude mcp add intervals --scope project -e INTERVALS_API_TOKEN=YOUR_TOKEN -- npx -y mcp-intervals
|
|
24
|
+
|
|
25
|
+
# Only for you in the current project (default)
|
|
19
26
|
claude mcp add intervals -e INTERVALS_API_TOKEN=YOUR_TOKEN -- npx -y mcp-intervals
|
|
20
27
|
```
|
|
21
28
|
|
|
@@ -86,20 +93,20 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
|
86
93
|
|
|
87
94
|
## Available Tools
|
|
88
95
|
|
|
89
|
-
| Tool
|
|
90
|
-
|
|
91
|
-
| `get_task`
|
|
92
|
-
| `update_task`
|
|
93
|
-
| `add_task_note`
|
|
94
|
-
| `get_task_notes` | Retrieve all comments/notes on a task
|
|
95
|
-
| `get_project`
|
|
96
|
-
| `get_milestone`
|
|
96
|
+
| Tool | Description |
|
|
97
|
+
| ---------------- | ----------------------------------------------------------------- |
|
|
98
|
+
| `get_task` | Get task details by local ID or Intervals URL |
|
|
99
|
+
| `update_task` | Update task status, assignee, priority, title, due date, or owner |
|
|
100
|
+
| `add_task_note` | Add a comment/note to a task (supports HTML) |
|
|
101
|
+
| `get_task_notes` | Retrieve all comments/notes on a task |
|
|
102
|
+
| `get_project` | Get project details (name, client, dates, budget) |
|
|
103
|
+
| `get_milestone` | Get milestone details (title, due date, progress) |
|
|
97
104
|
|
|
98
105
|
## Resources
|
|
99
106
|
|
|
100
|
-
| Resource
|
|
101
|
-
|
|
102
|
-
| Task Statuses
|
|
107
|
+
| Resource | URI | Description |
|
|
108
|
+
| --------------- | ------------------------ | --------------------------------------------------- |
|
|
109
|
+
| Task Statuses | `intervals://statuses` | List of all status IDs for use with `update_task` |
|
|
103
110
|
| Task Priorities | `intervals://priorities` | List of all priority IDs for use with `update_task` |
|
|
104
111
|
|
|
105
112
|
## Example Usage
|
package/dist/index.js
CHANGED
|
File without changes
|