Skip to content

README update to show how to use the CLI #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,21 @@ A typical workflow for an LLM using this task manager would be:

### CLI Commands

To use the CLI, you will need to install the package globally:

```bash
npm install -g taskqueue-mcp
```

Alternatively, you can run the CLI with `npx` using the `--package=taskqueue-mcp` flag to tell `npx` what package it's from.

```bash
npx --package=taskqueue-mcp taskqueue --help
```

#### Task Approval

Task approval is controlled exclusively by the human user through the CLI command:
Task approval is controlled exclusively by the human user through the CLI:

```bash
npx taskqueue approve-task -- <projectId> <taskId>
Expand Down