@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.
- package/README.md +43 -7
- 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)
|
|
5
|
-
scope
|
|
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
|
-
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
```bash
|
|
10
|
+
npx --yes @scopelock/mcp@beta
|
|
11
|
+
```
|
|
10
12
|
|
|
11
|
-
|
|
12
|
-
|
|
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.
|
|
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.
|
|
50
|
+
"@scopelock/core": "^0.1.0-beta.2"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsc -p tsconfig.json",
|