noggin-mcp 0.4.31

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/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "noggin-mcp",
3
+ "version": "0.4.31",
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
+ }