@jhostalek/junior-mcp 1.0.0 → 1.0.4

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 +11 -20
  2. package/dist/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,15 +2,6 @@
2
2
 
3
3
  MCP server for [Junior](https://github.com/JHostalek/junior). stdio-based wrapper — translates MCP tool calls into `junior` CLI commands.
4
4
 
5
- ## install
6
-
7
- ```bash
8
- git clone https://github.com/JHostalek/junior-mcp.git && cd junior-mcp
9
- bun install && bun run build
10
- ```
11
-
12
- needs [Bun](https://bun.sh) and [Junior](https://github.com/JHostalek/junior) installed and on your `PATH`.
13
-
14
5
  ## configure
15
6
 
16
7
  add to your project's `.mcp.json`:
@@ -19,23 +10,23 @@ add to your project's `.mcp.json`:
19
10
  {
20
11
  "mcpServers": {
21
12
  "junior": {
22
- "command": "/path/to/junior-mcp/dist/junior-mcp"
13
+ "command": "npx",
14
+ "args": ["-y", "@jhostalek/junior-mcp"]
23
15
  }
24
16
  }
25
17
  }
26
18
  ```
27
19
 
28
- or if `junior-mcp` is on your `PATH`:
20
+ needs [Junior](https://github.com/JHostalek/junior) installed and on your `PATH`.
29
21
 
30
- ```json
31
- {
32
- "mcpServers": {
33
- "junior": {
34
- "command": "junior-mcp"
35
- }
36
- }
37
- }
38
- ```
22
+ ## tools
23
+
24
+ 18 tools across 4 categories:
25
+
26
+ - **tasks** — create, list, show, cancel, retry, delete, logs
27
+ - **schedules** — create, list, pause, resume, remove
28
+ - **hooks** — create, list, pause, resume, remove
29
+ - **daemon** — status
39
30
 
40
31
  ## license
41
32
 
package/dist/index.js CHANGED
@@ -6285,7 +6285,7 @@ var require_formats = __commonJS((exports) => {
6285
6285
  }
6286
6286
  var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
6287
6287
  function getTime(strictTimeZone) {
6288
- return function time(str) {
6288
+ return function time3(str) {
6289
6289
  const matches = TIME.exec(str);
6290
6290
  if (!matches)
6291
6291
  return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jhostalek/junior-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.4",
4
4
  "description": "MCP server for Junior — expose task queue, schedules, and hooks to Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Jan Hostalek",