@scopelock/mcp 0.1.0-beta.1 → 0.1.0-beta.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 +43 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,14 +1,50 @@
1
1
  # @scopelock/mcp
2
2
 
3
3
  The narrow stdio MCP server for
4
- [ScopeLock](https://github.com/Daewooox/ScopeLock). It exposes deterministic
5
- scope conflict, scheduling, and drift-verification tools.
4
+ [ScopeLock](https://github.com/Daewooox/ScopeLock), local flight control for AI
5
+ coding agents. It exposes deterministic scope-conflict, scheduling, and
6
+ drift-verification tools so an agent can call ScopeLock directly instead of
7
+ shelling out to the CLI.
6
8
 
7
- The package has not been published to npm yet. Until the first beta release,
8
- build the repository and run `node packages/mcp/dist/index.js` from source.
9
- After publication, the intended command is `npx --yes @scopelock/mcp@beta`.
9
+ ```bash
10
+ npx --yes @scopelock/mcp@beta
11
+ ```
10
12
 
11
- The server is pinned to its startup repository and does not provide a generic
12
- agent runtime.
13
+ ## Tools
14
+
15
+ | Tool | What it does |
16
+ |---|---|
17
+ | `plan_parallel` | Build deterministic execution stages and conflict evidence for a multi-task plan. |
18
+ | `scopes_conflict` | Compare two task scopes and return the write-write/read-write conflict witness. |
19
+ | `check_drift` | Verify the active contract against repository drift. |
20
+
21
+ ## Configuration
22
+
23
+ Claude Code / Cursor-style:
24
+
25
+ ```json
26
+ {
27
+ "mcpServers": {
28
+ "scopelock": {
29
+ "command": "npx",
30
+ "args": ["--yes", "@scopelock/mcp@beta"]
31
+ }
32
+ }
33
+ }
34
+ ```
35
+
36
+ Codex:
37
+
38
+ ```toml
39
+ [mcp_servers.scopelock]
40
+ command = "npx"
41
+ args = ["--yes", "@scopelock/mcp@beta"]
42
+ ```
43
+
44
+ The server is pinned to the repository where it starts and does not provide
45
+ a generic agent runtime — tool inputs cannot override `repoRoot`, and
46
+ absolute/escaping contract paths are rejected. See the
47
+ [MCP server reference](https://github.com/Daewooox/ScopeLock/blob/main/docs/reference.md#mcp-server)
48
+ for the full tool schemas.
13
49
 
14
50
  MIT licensed. Requires Node.js 22 or newer.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scopelock/mcp",
3
- "version": "0.1.0-beta.1",
3
+ "version": "0.1.0-beta.2",
4
4
  "description": "MCP stdio server for ScopeLock's narrow planning and drift-verification tools.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -47,7 +47,7 @@
47
47
  "dependencies": {
48
48
  "@modelcontextprotocol/sdk": "^1.29.0",
49
49
  "zod": "^4.4.3",
50
- "@scopelock/core": "^0.1.0-beta.1"
50
+ "@scopelock/core": "^0.1.0-beta.2"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "tsc -p tsconfig.json",