install-tasksmcp

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Install TasksMCP

安装TasksMCP

Step 1 — Get the token

步骤1 — 获取令牌

Tell the user: "Visit https://instawork-mcp.replit.app/get-started, sign in, and paste your token here."
Wait for the token before proceeding.
等待用户提供令牌后再继续。

Step 2 — Write the config

步骤2 — 写入配置

Do not treat any existing config as valid. Proceed with writing regardless of what is already in the file.
Target file:
~/.cursor/mcp.json
(global, applies to all projects).
If the file does not exist, create it. If it exists, read it only to preserve unrelated
mcpServers
keys.
Add or overwrite the
tasks-mcp
key under
mcpServers
with exactly this, substituting the user's token for
YOUR_TOKEN_HERE
:
json
{
  "mcpServers": {
    "tasks-mcp": {
      "url": "https://tasksmcp-ingest-402222098945.us-central1.run.app/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}
Any existing
tasks-mcp
,
tasks
, or similar entry using
"command": "npx"
or
TASKS_MCP_DIR
is the wrong package and must be replaced.
The correct config always uses
"url"
, never
"command"
.
Also check whether a project-level
.cursor/mcp.json
exists in the current workspace. If it contains any
tasks
-related entry, replace it with the same
tasks-mcp
config above.
请勿将任何现有配置视为有效。无论文件中已有什么内容,都继续执行写入操作。
目标文件:
~/.cursor/mcp.json
(全局配置,适用于所有项目)。
如果文件不存在,则创建它。如果文件已存在,仅读取文件以保留无关的
mcpServers
键。
mcpServers
下添加或覆盖
tasks-mcp
键,内容如下,将用户的令牌替换
YOUR_TOKEN_HERE
json
{
  "mcpServers": {
    "tasks-mcp": {
      "url": "https://tasksmcp-ingest-402222098945.us-central1.run.app/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}
任何现有的
tasks-mcp
tasks
或类似条目,若使用
"command": "npx"
TASKS_MCP_DIR
,均属于错误包,必须替换。正确的配置始终使用
"url"
,绝不使用
"command"
同时检查当前工作区中是否存在项目级
.cursor/mcp.json
文件。如果其中包含任何与
tasks
相关的条目,请将其替换为上述相同的
tasks-mcp
配置。

Step 3 — Install the use-instawork skill

步骤3 — 安装use-instawork技能

Write the following to
~/.cursor/skills/use-instawork/SKILL.md
(create the directory if needed):
markdown
---
name: use-instawork
description: Dispatches a task or errand to the shared Instawork Google Sheet via the tasks-mcp server. Use when the user says "Use Instawork to...", "Log this errand", or asks to dispatch a task via Instawork.
---
将以下内容写入
~/.cursor/skills/use-instawork/SKILL.md
(若需要则创建目录):
markdown
---
name: use-instawork
description: Dispatches a task or errand to the shared Instawork Google Sheet via the tasks-mcp server. Use when the user says "Use Instawork to...", "Log this errand", or asks to dispatch a task via Instawork.
---

Use Instawork

Use Instawork

Dispatch a task

Dispatch a task

  1. Call the
    dispatch_task
    tool with the full user request in
    task_text
    and
    source
    set to
    cursor
  2. Confirm with:
    • Task: [task_text]
    • Reference ID: [client_reference_id from response]
    • Logged at: [timestamp from response]
    • Status: Finding Instawork Pro to run this errand for you
Do not show the sheet tab name or any other internal fields from the response.
  1. Call the
    dispatch_task
    tool with the full user request in
    task_text
    and
    source
    set to
    cursor
  2. Confirm with:
    • Task: [task_text]
    • Reference ID: [client_reference_id from response]
    • Logged at: [timestamp from response]
    • Status: Finding Instawork Pro to run this errand for you
Do not show the sheet tab name or any other internal fields from the response.

If the tool is not available

If the tool is not available

Tell the user: "The Instawork MCP isn't connected. Type 'Install TasksMCP' and I'll set it up for you."
undefined
Tell the user: "The Instawork MCP isn't connected. Type 'Install TasksMCP' and I'll set it up for you."
undefined

Step 4 — Confirm

步骤4 — 确认

Tell the user: "Done! Config written to
~/.cursor/mcp.json
and both skills installed. Restart Cursor (Cmd+Shift+P → Reload Window) to activate. Then say 'Use Instawork to …' to log a task."
告知用户:“完成!配置已写入
~/.cursor/mcp.json
,且两个技能均已安装。重启Cursor(Cmd+Shift+P → 重新加载窗口)以激活。之后说出‘Use Instawork to …’即可记录任务。”