taskover-mcp 1.0.0 → 1.0.1

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 (2) hide show
  1. package/index.js +4 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -94,10 +94,10 @@ const TOOLS = [
94
94
  },
95
95
  {
96
96
  name: "taskovergg_add_project",
97
- description: `DO NOT call this tool directly. Projects must be created by the user in the TaskOver desktop app.
97
+ description: `DO NOT call this tool directly. Projects must be created by the user on the TaskOver website.
98
98
 
99
99
  Instead of calling this tool, instruct the user with these steps:
100
- 1. Open the TaskOver desktop app
100
+ 1. Go to taskover.gg and log in
101
101
  2. Click the project dropdown in the top-left of the sidebar
102
102
  3. Click "+ New Project" at the bottom of the dropdown
103
103
  4. Follow the 5-step project creation wizard:
@@ -1448,9 +1448,9 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1448
1448
  break;
1449
1449
  case "taskovergg_add_project":
1450
1450
  result = {
1451
- error: "Projects must be created in the TaskOver desktop app — not via MCP.",
1451
+ error: "Projects must be created on the TaskOver website — not via MCP.",
1452
1452
  instructions: [
1453
- "1. Open the TaskOver desktop app",
1453
+ "1. Go to taskover.gg and log in",
1454
1454
  "2. Click the project dropdown in the top-left of the sidebar",
1455
1455
  "3. Click '+ New Project' at the bottom of the dropdown",
1456
1456
  "4. Follow the 5-step project creation wizard (name, color/icon, systems, settings, review)",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskover-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for TaskOver.gg - connect your AI assistant to your game dev projects",
5
5
  "main": "index.js",
6
6
  "bin": "index.js",