md-feedback 0.9.2 → 0.9.3
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 +6 -2
- package/package.json +60 -60
- package/dist/mcp-server.js +0 -22435
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> MCP server for markdown annotation review — AI agents read your annotations directly.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/md-feedback)
|
|
6
|
-
[](https://github.com/yeominux/md-feedback/blob/
|
|
6
|
+
[](https://github.com/yeominux/md-feedback/blob/main/LICENSE)
|
|
7
7
|
|
|
8
8
|
## What is this?
|
|
9
9
|
|
|
@@ -61,6 +61,10 @@ md-feedback --version # Print version
|
|
|
61
61
|
md-feedback # Start MCP server (stdio)
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
+
## Who Is This For?
|
|
65
|
+
|
|
66
|
+
Developers and team leads who use AI coding agents (Claude Code, Cursor, Copilot) and want to review AI-generated plans before implementation — not after.
|
|
67
|
+
|
|
64
68
|
## Links
|
|
65
69
|
|
|
66
70
|
- [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode)
|
|
@@ -69,4 +73,4 @@ md-feedback # Start MCP server (stdio)
|
|
|
69
73
|
|
|
70
74
|
## License
|
|
71
75
|
|
|
72
|
-
[SUL-1.0](https://github.com/yeominux/md-feedback/blob/
|
|
76
|
+
[SUL-1.0](https://github.com/yeominux/md-feedback/blob/main/LICENSE) — Free for personal and non-commercial use.
|
package/package.json
CHANGED
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "md-feedback",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "MCP server for MD Feedback: AI agents read markdown review annotations, update memo status, evaluate gates, and generate handoffs.",
|
|
5
|
-
"license": "SUL-1.0",
|
|
6
|
-
"author": "Yeomin Seon",
|
|
7
|
-
"type": "commonjs",
|
|
8
|
-
"bin": {
|
|
9
|
-
"md-feedback": "./bin/md-feedback.cjs"
|
|
10
|
-
},
|
|
11
|
-
"files": [
|
|
12
|
-
"dist/mcp-server.js",
|
|
13
|
-
"bin/md-feedback.cjs",
|
|
14
|
-
"README.md"
|
|
15
|
-
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "node esbuild.mjs"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
21
|
-
"zod": "^3.23.0"
|
|
22
|
-
},
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"esbuild": "^0.24.0",
|
|
25
|
-
"typescript": "^5.7.0"
|
|
26
|
-
},
|
|
27
|
-
"engines": {
|
|
28
|
-
"node": ">=18"
|
|
29
|
-
},
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "https://github.com/yeominux/md-feedback"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/yeominux/md-feedback#mcp-server
|
|
35
|
-
"keywords": [
|
|
36
|
-
"mcp",
|
|
37
|
-
"mcp-server",
|
|
38
|
-
"model-context-protocol",
|
|
39
|
-
"markdown",
|
|
40
|
-
"feedback",
|
|
41
|
-
"ai",
|
|
42
|
-
"annotation",
|
|
43
|
-
"review",
|
|
44
|
-
"plan-review",
|
|
45
|
-
"ai-agent",
|
|
46
|
-
"coding-workflow",
|
|
47
|
-
"handoff",
|
|
48
|
-
"session-handoff",
|
|
49
|
-
"structured-feedback",
|
|
50
|
-
"checkpoint",
|
|
51
|
-
"ai-context",
|
|
52
|
-
"ai-coding",
|
|
53
|
-
"claude-code",
|
|
54
|
-
"cursor-ai",
|
|
55
|
-
"vibe-coding",
|
|
56
|
-
"context-engineering",
|
|
57
|
-
"gates",
|
|
58
|
-
"plan-review-tool"
|
|
59
|
-
]
|
|
60
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "md-feedback",
|
|
3
|
+
"version": "0.9.3",
|
|
4
|
+
"description": "MCP server for MD Feedback: AI agents read markdown review annotations, update memo status, evaluate gates, and generate handoffs.",
|
|
5
|
+
"license": "SUL-1.0",
|
|
6
|
+
"author": "Yeomin Seon",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"bin": {
|
|
9
|
+
"md-feedback": "./bin/md-feedback.cjs"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/mcp-server.js",
|
|
13
|
+
"bin/md-feedback.cjs",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "node esbuild.mjs"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
21
|
+
"zod": "^3.23.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"esbuild": "^0.24.0",
|
|
25
|
+
"typescript": "^5.7.0"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/yeominux/md-feedback"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/yeominux/md-feedback#mcp-server",
|
|
35
|
+
"keywords": [
|
|
36
|
+
"mcp",
|
|
37
|
+
"mcp-server",
|
|
38
|
+
"model-context-protocol",
|
|
39
|
+
"markdown",
|
|
40
|
+
"feedback",
|
|
41
|
+
"ai",
|
|
42
|
+
"annotation",
|
|
43
|
+
"review",
|
|
44
|
+
"plan-review",
|
|
45
|
+
"ai-agent",
|
|
46
|
+
"coding-workflow",
|
|
47
|
+
"handoff",
|
|
48
|
+
"session-handoff",
|
|
49
|
+
"structured-feedback",
|
|
50
|
+
"checkpoint",
|
|
51
|
+
"ai-context",
|
|
52
|
+
"ai-coding",
|
|
53
|
+
"claude-code",
|
|
54
|
+
"cursor-ai",
|
|
55
|
+
"vibe-coding",
|
|
56
|
+
"context-engineering",
|
|
57
|
+
"gates",
|
|
58
|
+
"plan-review-tool"
|
|
59
|
+
]
|
|
60
|
+
}
|