Skip to content

Commit e42e45f

Browse files
Updated some refs to old lib name
1 parent 9bd34cb commit e42e45f

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Usually you will set the tool configuration in Claude Desktop, Cursor, or anothe
1919
```json
2020
{
2121
"tools": {
22-
"taskmanager": {
22+
"taskqueue": {
2323
"command": "npx",
2424
"args": ["-y", "taskqueue-mcp"]
2525
}
@@ -32,7 +32,7 @@ Or, with a custom tasks.json path:
3232
```json
3333
{
3434
"tools": {
35-
"taskmanager": {
35+
"taskqueue": {
3636
"command": "npx",
3737
"args": ["-y", "taskqueue-mcp"],
3838
"env": {
@@ -306,9 +306,9 @@ src/
306306
The task manager stores data in a JSON file with platform-specific default locations:
307307

308308
- **Default locations**:
309-
- **Linux**: `~/.local/share/mcp-taskmanager/tasks.json` (following XDG Base Directory specification)
310-
- **macOS**: `~/Library/Application Support/mcp-taskmanager/tasks.json`
311-
- **Windows**: `%APPDATA%\mcp-taskmanager\tasks.json` (typically `C:\Users\<username>\AppData\Roaming\mcp-taskmanager\tasks.json`)
309+
- **Linux**: `~/.local/share/taskqueue-mcp/tasks.json` (following XDG Base Directory specification)
310+
- **macOS**: `~/Library/Application Support/taskqueue-mcp/tasks.json`
311+
- **Windows**: `%APPDATA%\taskqueue-mcp\tasks.json` (typically `C:\Users\<username>\AppData\Roaming\taskqueue-mcp\tasks.json`)
312312
- **Custom location**: Set via `TASK_MANAGER_FILE_PATH` environment variable
313313

314314
```bash

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "taskqueue-mcp",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Task Queue MCP Server",
55
"author": "Christopher C. Smith ([email protected])",
66
"main": "dist/index.js",
77
"type": "module",
88
"bin": {
9-
"mcp-taskmanager": "dist/index.js",
9+
"taskqueue-mcp": "dist/index.js",
1010
"task-manager-cli": "dist/src/cli.js"
1111
},
1212
"files": [
@@ -28,7 +28,9 @@
2828
"url": "git+https://github.com/chriscarrollsmith/taskqueue-mcp.git"
2929
},
3030
"keywords": [
31-
"taskmanager",
31+
"taskqueue",
32+
"taskqueue-mcp",
33+
"taskqueue",
3234
"mcp",
3335
"claude"
3436
],

src/server/TaskManagerServer.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ const getAppDataDir = () => {
88
const platform = process.platform;
99

1010
if (platform === 'darwin') {
11-
// macOS: ~/Library/Application Support/mcp-taskmanager
12-
return path.join(os.homedir(), 'Library', 'Application Support', 'mcp-taskmanager');
11+
// macOS: ~/Library/Application Support/taskqueue-mcp
12+
return path.join(os.homedir(), 'Library', 'Application Support', 'taskqueue-mcp');
1313
} else if (platform === 'win32') {
14-
// Windows: %APPDATA%\mcp-taskmanager (usually C:\Users\<user>\AppData\Roaming\mcp-taskmanager)
15-
return path.join(process.env.APPDATA || path.join(os.homedir(), 'AppData', 'Roaming'), 'mcp-taskmanager');
14+
// Windows: %APPDATA%\taskqueue-mcp (usually C:\Users\<user>\AppData\Roaming\taskqueue-mcp)
15+
return path.join(process.env.APPDATA || path.join(os.homedir(), 'AppData', 'Roaming'), 'taskqueue-mcp');
1616
} else {
17-
// Linux/Unix/Others: Use XDG Base Directory if available, otherwise ~/.local/share/mcp-taskmanager
17+
// Linux/Unix/Others: Use XDG Base Directory if available, otherwise ~/.local/share/taskqueue-mcp
1818
const xdgDataHome = process.env.XDG_DATA_HOME;
19-
const linuxDefaultDir = path.join(os.homedir(), '.local', 'share', 'mcp-taskmanager');
20-
return xdgDataHome ? path.join(xdgDataHome, 'mcp-taskmanager') : linuxDefaultDir;
19+
const linuxDefaultDir = path.join(os.homedir(), '.local', 'share', 'taskqueue-mcp');
20+
return xdgDataHome ? path.join(xdgDataHome, 'taskqueue-mcp') : linuxDefaultDir;
2121
}
2222
};
2323

0 commit comments

Comments
 (0)