noggin-mcp 0.4.31 → 0.4.35
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/LICENSE +21 -21
- package/README.md +78 -78
- package/dist/noggin-mcp.mjs +1 -1
- package/package.json +49 -49
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 dornstein
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 dornstein
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
# noggin-mcp
|
|
2
|
-
|
|
3
|
-
A stdio [Model Context Protocol](https://modelcontextprotocol.io/) server
|
|
4
|
-
that exposes the [noggin](https://dornstein.github.io/noggin/) working-memory
|
|
5
|
-
tree to MCP-capable agent hosts: Claude Code, Codex CLI, GitHub Copilot CLI,
|
|
6
|
-
Cursor, and VS Code (via `.vscode/mcp.json`).
|
|
7
|
-
|
|
8
|
-
The CLI lives in a separate package: [`noggin-cli`](https://www.npmjs.com/package/noggin-cli).
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
## Install
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
# Global
|
|
16
|
-
npm install -g noggin-mcp
|
|
17
|
-
|
|
18
|
-
# Or run ad-hoc via npx — recommended for MCP host configs
|
|
19
|
-
npx -y noggin-mcp@latest
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
The package ships one bin, `noggin-mcp`, that speaks JSON-RPC over stdio.
|
|
23
|
-
|
|
24
|
-
## Host wire-up
|
|
25
|
-
|
|
26
|
-
Every tool call requires a `noggin` parameter — the canonical location of the
|
|
27
|
-
noggin to operate on (e.g. `~/.noggin.yaml`, `./.noggin.yaml`,
|
|
28
|
-
`file:///abs/path.yaml`). No environment-variable default; agents pass the
|
|
29
|
-
location with every call so one session can drive multiple noggins.
|
|
30
|
-
|
|
31
|
-
### Claude Code / generic `mcpServers` config
|
|
32
|
-
|
|
33
|
-
```jsonc
|
|
34
|
-
{
|
|
35
|
-
"mcpServers": {
|
|
36
|
-
"noggin": {
|
|
37
|
-
"command": "npx",
|
|
38
|
-
"args": ["-y", "noggin-mcp@latest"]
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
### VS Code (`.vscode/mcp.json`)
|
|
45
|
-
|
|
46
|
-
```jsonc
|
|
47
|
-
{
|
|
48
|
-
"servers": {
|
|
49
|
-
"noggin": {
|
|
50
|
-
"command": "npx",
|
|
51
|
-
"args": ["-y", "noggin-mcp@latest"]
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
### Codex CLI / packaged plugin
|
|
58
|
-
|
|
59
|
-
The [noggin Codex plugin](https://github.com/dornstein/noggin/tree/main/plugin)
|
|
60
|
-
ships a self-contained bundle (`noggin-mcp.bundle.mjs`) so `npx` isn't
|
|
61
|
-
required at runtime. See the plugin README for details.
|
|
62
|
-
|
|
63
|
-
## Tools
|
|
64
|
-
|
|
65
|
-
The server exposes one MCP tool per noggin verb (`noggin_push`, `noggin_add`,
|
|
66
|
-
`noggin_goto`, `noggin_done`, `noggin_pop`, `noggin_edit`, `noggin_note`,
|
|
67
|
-
`noggin_move`, `noggin_delete`, `noggin_show`, `noggin_where`, `noggin_copy`,
|
|
68
|
-
`noggin_providers`). The generated tool reference, including each tool's
|
|
69
|
-
JSON-Schema input shape, lives at
|
|
70
|
-
[dornstein.github.io/noggin/mcp/](https://dornstein.github.io/noggin/mcp/).
|
|
71
|
-
|
|
72
|
-
For the agent-facing protocol — when to invoke which verb, how to read the
|
|
73
|
-
response envelope — see the [SKILL.md](https://github.com/dornstein/noggin/blob/main/engine/SKILL.md)
|
|
74
|
-
shipped with every noggin distribution.
|
|
75
|
-
|
|
76
|
-
## License
|
|
77
|
-
|
|
78
|
-
[MIT](LICENSE).
|
|
1
|
+
# noggin-mcp
|
|
2
|
+
|
|
3
|
+
A stdio [Model Context Protocol](https://modelcontextprotocol.io/) server
|
|
4
|
+
that exposes the [noggin](https://dornstein.github.io/noggin/) working-memory
|
|
5
|
+
tree to MCP-capable agent hosts: Claude Code, Codex CLI, GitHub Copilot CLI,
|
|
6
|
+
Cursor, and VS Code (via `.vscode/mcp.json`).
|
|
7
|
+
|
|
8
|
+
The CLI lives in a separate package: [`noggin-cli`](https://www.npmjs.com/package/noggin-cli).
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# Global
|
|
16
|
+
npm install -g noggin-mcp
|
|
17
|
+
|
|
18
|
+
# Or run ad-hoc via npx — recommended for MCP host configs
|
|
19
|
+
npx -y noggin-mcp@latest
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
The package ships one bin, `noggin-mcp`, that speaks JSON-RPC over stdio.
|
|
23
|
+
|
|
24
|
+
## Host wire-up
|
|
25
|
+
|
|
26
|
+
Every tool call requires a `noggin` parameter — the canonical location of the
|
|
27
|
+
noggin to operate on (e.g. `~/.noggin.yaml`, `./.noggin.yaml`,
|
|
28
|
+
`file:///abs/path.yaml`). No environment-variable default; agents pass the
|
|
29
|
+
location with every call so one session can drive multiple noggins.
|
|
30
|
+
|
|
31
|
+
### Claude Code / generic `mcpServers` config
|
|
32
|
+
|
|
33
|
+
```jsonc
|
|
34
|
+
{
|
|
35
|
+
"mcpServers": {
|
|
36
|
+
"noggin": {
|
|
37
|
+
"command": "npx",
|
|
38
|
+
"args": ["-y", "noggin-mcp@latest"]
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### VS Code (`.vscode/mcp.json`)
|
|
45
|
+
|
|
46
|
+
```jsonc
|
|
47
|
+
{
|
|
48
|
+
"servers": {
|
|
49
|
+
"noggin": {
|
|
50
|
+
"command": "npx",
|
|
51
|
+
"args": ["-y", "noggin-mcp@latest"]
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Codex CLI / packaged plugin
|
|
58
|
+
|
|
59
|
+
The [noggin Codex plugin](https://github.com/dornstein/noggin/tree/main/plugin)
|
|
60
|
+
ships a self-contained bundle (`noggin-mcp.bundle.mjs`) so `npx` isn't
|
|
61
|
+
required at runtime. See the plugin README for details.
|
|
62
|
+
|
|
63
|
+
## Tools
|
|
64
|
+
|
|
65
|
+
The server exposes one MCP tool per noggin verb (`noggin_push`, `noggin_add`,
|
|
66
|
+
`noggin_goto`, `noggin_done`, `noggin_pop`, `noggin_edit`, `noggin_note`,
|
|
67
|
+
`noggin_move`, `noggin_delete`, `noggin_show`, `noggin_where`, `noggin_copy`,
|
|
68
|
+
`noggin_providers`). The generated tool reference, including each tool's
|
|
69
|
+
JSON-Schema input shape, lives at
|
|
70
|
+
[dornstein.github.io/noggin/mcp/](https://dornstein.github.io/noggin/mcp/).
|
|
71
|
+
|
|
72
|
+
For the agent-facing protocol — when to invoke which verb, how to read the
|
|
73
|
+
response envelope — see the [SKILL.md](https://github.com/dornstein/noggin/blob/main/engine/SKILL.md)
|
|
74
|
+
shipped with every noggin distribution.
|
|
75
|
+
|
|
76
|
+
## License
|
|
77
|
+
|
|
78
|
+
[MIT](LICENSE).
|
package/dist/noggin-mcp.mjs
CHANGED
|
@@ -19349,7 +19349,7 @@ import url from "node:url";
|
|
|
19349
19349
|
// mcp/package.json
|
|
19350
19350
|
var package_default = {
|
|
19351
19351
|
name: "noggin-mcp",
|
|
19352
|
-
version: "0.4.
|
|
19352
|
+
version: "0.4.35",
|
|
19353
19353
|
description: "stdio Model Context Protocol server for noggin \u2014 exposes the noggin verbs to MCP-capable agent hosts (Claude Code, Codex CLI, Copilot CLI, Cursor, VS Code).",
|
|
19354
19354
|
type: "module",
|
|
19355
19355
|
bin: {
|
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "noggin-mcp",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "stdio Model Context Protocol server for noggin — exposes the noggin verbs to MCP-capable agent hosts (Claude Code, Codex CLI, Copilot CLI, Cursor, VS Code).",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"noggin-mcp": "./dist/noggin-mcp.mjs"
|
|
8
|
-
},
|
|
9
|
-
"main": "./dist/noggin-mcp.mjs",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"README.md",
|
|
13
|
-
"LICENSE"
|
|
14
|
-
],
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=20"
|
|
17
|
-
},
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@noggin/engine": "file:../engine",
|
|
23
|
-
"esbuild": "^0.25.12"
|
|
24
|
-
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"test": "node --check noggin-mcp.mjs && node --test test/*.test.mjs",
|
|
27
|
-
"build": "node ../scripts/build-mcp-bundle.mjs --source mcp noggin-mcp.mjs dist/noggin-mcp.mjs",
|
|
28
|
-
"prepack": "npm run build"
|
|
29
|
-
},
|
|
30
|
-
"keywords": [
|
|
31
|
-
"noggin",
|
|
32
|
-
"mcp",
|
|
33
|
-
"model-context-protocol",
|
|
34
|
-
"agent",
|
|
35
|
-
"todo",
|
|
36
|
-
"working-memory"
|
|
37
|
-
],
|
|
38
|
-
"author": "dornstein",
|
|
39
|
-
"license": "MIT",
|
|
40
|
-
"repository": {
|
|
41
|
-
"type": "git",
|
|
42
|
-
"url": "git+https://github.com/dornstein/noggin.git",
|
|
43
|
-
"directory": "mcp"
|
|
44
|
-
},
|
|
45
|
-
"homepage": "https://github.com/dornstein/noggin#readme",
|
|
46
|
-
"bugs": {
|
|
47
|
-
"url": "https://github.com/dornstein/noggin/issues"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "noggin-mcp",
|
|
3
|
+
"version": "0.4.35",
|
|
4
|
+
"description": "stdio Model Context Protocol server for noggin — exposes the noggin verbs to MCP-capable agent hosts (Claude Code, Codex CLI, Copilot CLI, Cursor, VS Code).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"noggin-mcp": "./dist/noggin-mcp.mjs"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/noggin-mcp.mjs",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@noggin/engine": "file:../engine",
|
|
23
|
+
"esbuild": "^0.25.12"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"test": "node --check noggin-mcp.mjs && node --test test/*.test.mjs",
|
|
27
|
+
"build": "node ../scripts/build-mcp-bundle.mjs --source mcp noggin-mcp.mjs dist/noggin-mcp.mjs",
|
|
28
|
+
"prepack": "npm run build"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"noggin",
|
|
32
|
+
"mcp",
|
|
33
|
+
"model-context-protocol",
|
|
34
|
+
"agent",
|
|
35
|
+
"todo",
|
|
36
|
+
"working-memory"
|
|
37
|
+
],
|
|
38
|
+
"author": "dornstein",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/dornstein/noggin.git",
|
|
43
|
+
"directory": "mcp"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://github.com/dornstein/noggin#readme",
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/dornstein/noggin/issues"
|
|
48
|
+
}
|
|
49
|
+
}
|