@lightward/mechanic-mcp 0.1.1 → 0.1.2

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/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,14 +5,14 @@ Mechanic MCP server for the task library and docs. Built for writing and customi
5
5
  ## User guide
6
6
  - Requirements: Node.js 18+, MCP-capable client (Cursor, Claude Desktop, Codex, Gemini CLI, etc.).
7
7
  - What you can ask: find tasks; fetch task code (subscriptions + script/JS blocks); find docs; suggest similar tasks; get doc content; help writing or customizing Mechanic tasks.
8
- - Setup (use `npx mechanic-mcp@latest`):
8
+ - Setup (use `npx @lightward/mechanic-mcp@latest`):
9
9
  - Cursor:
10
10
  ```json
11
11
  {
12
12
  "mcpServers": {
13
13
  "mechanic-mcp": {
14
14
  "command": "npx",
15
- "args": ["-y", "mechanic-mcp@latest"]
15
+ "args": ["-y", "@lightward/mechanic-mcp@latest"]
16
16
  }
17
17
  }
18
18
  }
@@ -23,7 +23,7 @@ Mechanic MCP server for the task library and docs. Built for writing and customi
23
23
  "mcpServers": {
24
24
  "mechanic-mcp": {
25
25
  "command": "npx",
26
- "args": ["-y", "mechanic-mcp@latest"]
26
+ "args": ["-y", "@lightward/mechanic-mcp@latest"]
27
27
  }
28
28
  }
29
29
  }
@@ -32,7 +32,7 @@ Mechanic MCP server for the task library and docs. Built for writing and customi
32
32
  ```toml
33
33
  [mcp_servers.mechanic-mcp]
34
34
  command = "npx"
35
- args = ["-y", "mechanic-mcp@latest"]
35
+ args = ["-y", "@lightward/mechanic-mcp@latest"]
36
36
  ```
37
37
  - Gemini CLI: same JSON as Cursor/Claude.
38
38
  - Tools:
@@ -52,7 +52,7 @@ Mechanic MCP server for the task library and docs. Built for writing and customi
52
52
  npm run build
53
53
  ```
54
54
  - Tests: `npm run test:smoke`, `npm run test:smoke-doc`, `npm run test:smoke-task`.
55
- - Publish: bump version, `npm publish`.
55
+ - Publish: bump version, `npm publish` (use `--access public` for scoped packages).
56
56
 
57
57
  ## Env (optional)
58
58
  - `MECHANIC_DATA_PATH` (default `dist/data`), `MECHANIC_DOCS_PATH`, `MECHANIC_TASKS_PATH`, repo URLs/branches, sync interval.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightward/mechanic-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Mechanic MCP server for docs and task library search",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",