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.
Files changed (3) hide show
  1. package/README.md +18 -11
  2. package/dist/index.js +0 -0
  3. 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 | Description |
90
- |------|-------------|
91
- | `get_task` | Get task details by local ID or Intervals URL |
92
- | `update_task` | Update task status, assignee, priority, title, due date, or owner |
93
- | `add_task_note` | Add a comment/note to a task (supports HTML) |
94
- | `get_task_notes` | Retrieve all comments/notes on a task |
95
- | `get_project` | Get project details (name, client, dates, budget) |
96
- | `get_milestone` | Get milestone details (title, due date, progress) |
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 | URI | Description |
101
- |----------|-----|-------------|
102
- | Task Statuses | `intervals://statuses` | List of all status IDs for use with `update_task` |
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-intervals",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for Intervals task management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",