@brainervirus/workit-mcp 1.0.0
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 +18 -0
- package/dist/index.js +27649 -0
- package/package.json +46 -0
- package/scripts/build.ts +33 -0
- package/src/index.ts +30 -0
- package/src/server.ts +388 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @brainervirus/workit-mcp
|
|
2
|
+
|
|
3
|
+
[](https://github.com/BrainerVirus/workit/actions/workflows/ci.yml)
|
|
4
|
+
[](../../LICENSE)
|
|
5
|
+
|
|
6
|
+
Shared low-level MCP transport for the eight workit operation families (`workit_task`, `workit_policy`, `workit_evidence`, `workit_finding`, `workit_decision`, `workit_worker`, `workit_writer`, `workit_state`). Host wiring stays adapter-owned: Cursor and Codex register this server and keep their native surfaces.
|
|
7
|
+
|
|
8
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
- **Node.js ≥ 24**
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
workit-mcp # stdio MCP server: tools plus workit://context/{kind} resources
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Read-only contexts (`git`, `pr`, `youtrack`, `github_issue`, `gitlab_issue`, `changelog`, `release`, `affected`) are exposed as resources and need no approval or writer. Mutations are unavailable over caller-unattested MCP by design — they run through each host's attested surface.
|