md-feedback 0.8.0 → 0.9.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 +72 -72
- package/bin/md-feedback.cjs +19 -19
- package/dist/mcp-server.js +2 -2
- package/package.json +60 -56
package/README.md
CHANGED
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
# md-feedback
|
|
2
|
-
|
|
3
|
-
> MCP server for markdown annotation review — AI agents read your annotations directly.
|
|
4
|
-
|
|
5
|
-
[](https://www.npmjs.com/package/md-feedback)
|
|
6
|
-
[](https://github.com/yeominux/md-feedback/blob/dev/LICENSE)
|
|
7
|
-
|
|
8
|
-
## What is this?
|
|
9
|
-
|
|
10
|
-
md-feedback is an [MCP](https://modelcontextprotocol.io/) server that lets AI agents (Claude Code, Cursor, Copilot, etc.) read your markdown review annotations, mark memos done, evaluate quality gates, and generate session handoffs — all automatically.
|
|
11
|
-
|
|
12
|
-
**This is the MCP server component.** For the VS Code extension, see [MD Feedback on VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode).
|
|
13
|
-
|
|
14
|
-
## Quick Start
|
|
15
|
-
|
|
16
|
-
Add to your MCP client config (Claude Code, Cursor, etc.):
|
|
17
|
-
|
|
18
|
-
```json
|
|
19
|
-
{
|
|
20
|
-
"mcpServers": {
|
|
21
|
-
"md-feedback": {
|
|
22
|
-
"command": "npx",
|
|
23
|
-
"args": ["-y", "md-feedback"]
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
That's it. No install, no setup — `npx` handles everything.
|
|
30
|
-
|
|
31
|
-
## 12 MCP Tools
|
|
32
|
-
|
|
33
|
-
| Tool | Description |
|
|
34
|
-
|------|-------------|
|
|
35
|
-
| `get_document_structure` | Full review state: memos, gates, cursor, sections, summary |
|
|
36
|
-
| `list_annotations` | All annotations with type/status/owner/color |
|
|
37
|
-
| `get_review_status` | Annotation counts and session status |
|
|
38
|
-
| `update_memo_status` | Mark a memo as open/answered/done/wontfix |
|
|
39
|
-
| `update_cursor` | Set plan cursor position (task ID, step, next action) |
|
|
40
|
-
| `evaluate_gates` | Check if merge/release/implement conditions are met |
|
|
41
|
-
| `export_review` | Export for a specific AI tool format |
|
|
42
|
-
| `create_checkpoint` | Save review progress |
|
|
43
|
-
| `get_checkpoints` | List all checkpoints |
|
|
44
|
-
| `generate_handoff` | Generate structured handoff document |
|
|
45
|
-
| `pickup_handoff` | Parse existing handoff for session resumption |
|
|
46
|
-
| `create_annotation` | Create annotation programmatically |
|
|
47
|
-
|
|
48
|
-
## How It Works
|
|
49
|
-
|
|
50
|
-
1. You annotate a markdown plan in the [VS Code extension](https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode)
|
|
51
|
-
2. AI agent reads annotations via MCP — no export needed
|
|
52
|
-
3. Agent implements fixes, marks memos done
|
|
53
|
-
4. Gates auto-evaluate — agent knows when it's safe to merge
|
|
54
|
-
5. Agent generates handoff — next session picks up where you left off
|
|
55
|
-
|
|
56
|
-
## CLI
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
md-feedback --help # Show help
|
|
60
|
-
md-feedback --version # Print version
|
|
61
|
-
md-feedback # Start MCP server (stdio)
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
## Links
|
|
65
|
-
|
|
66
|
-
- [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode)
|
|
67
|
-
- [GitHub](https://github.com/yeominux/md-feedback)
|
|
68
|
-
- [Documentation](https://github.com/yeominux/md-feedback#readme)
|
|
69
|
-
|
|
70
|
-
## License
|
|
71
|
-
|
|
72
|
-
[SUL-1.0](https://github.com/yeominux/md-feedback/blob/dev/LICENSE) — Free for personal and non-commercial use.
|
|
1
|
+
# md-feedback
|
|
2
|
+
|
|
3
|
+
> MCP server for markdown annotation review — AI agents read your annotations directly.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/md-feedback)
|
|
6
|
+
[](https://github.com/yeominux/md-feedback/blob/dev/LICENSE)
|
|
7
|
+
|
|
8
|
+
## What is this?
|
|
9
|
+
|
|
10
|
+
md-feedback is an [MCP](https://modelcontextprotocol.io/) server that lets AI agents (Claude Code, Cursor, Copilot, etc.) read your markdown review annotations, mark memos done, evaluate quality gates, and generate session handoffs — all automatically.
|
|
11
|
+
|
|
12
|
+
**This is the MCP server component.** For the VS Code extension, see [MD Feedback on VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode).
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
Add to your MCP client config (Claude Code, Cursor, etc.):
|
|
17
|
+
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"mcpServers": {
|
|
21
|
+
"md-feedback": {
|
|
22
|
+
"command": "npx",
|
|
23
|
+
"args": ["-y", "md-feedback"]
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
That's it. No install, no setup — `npx` handles everything.
|
|
30
|
+
|
|
31
|
+
## 12 MCP Tools
|
|
32
|
+
|
|
33
|
+
| Tool | Description |
|
|
34
|
+
|------|-------------|
|
|
35
|
+
| `get_document_structure` | Full review state: memos, gates, cursor, sections, summary |
|
|
36
|
+
| `list_annotations` | All annotations with type/status/owner/color |
|
|
37
|
+
| `get_review_status` | Annotation counts and session status |
|
|
38
|
+
| `update_memo_status` | Mark a memo as open/answered/done/wontfix |
|
|
39
|
+
| `update_cursor` | Set plan cursor position (task ID, step, next action) |
|
|
40
|
+
| `evaluate_gates` | Check if merge/release/implement conditions are met |
|
|
41
|
+
| `export_review` | Export for a specific AI tool format |
|
|
42
|
+
| `create_checkpoint` | Save review progress |
|
|
43
|
+
| `get_checkpoints` | List all checkpoints |
|
|
44
|
+
| `generate_handoff` | Generate structured handoff document |
|
|
45
|
+
| `pickup_handoff` | Parse existing handoff for session resumption |
|
|
46
|
+
| `create_annotation` | Create annotation programmatically |
|
|
47
|
+
|
|
48
|
+
## How It Works
|
|
49
|
+
|
|
50
|
+
1. You annotate a markdown plan in the [VS Code extension](https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode)
|
|
51
|
+
2. AI agent reads annotations via MCP — no export needed
|
|
52
|
+
3. Agent implements fixes, marks memos done
|
|
53
|
+
4. Gates auto-evaluate — agent knows when it's safe to merge
|
|
54
|
+
5. Agent generates handoff — next session picks up where you left off
|
|
55
|
+
|
|
56
|
+
## CLI
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
md-feedback --help # Show help
|
|
60
|
+
md-feedback --version # Print version
|
|
61
|
+
md-feedback # Start MCP server (stdio)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Links
|
|
65
|
+
|
|
66
|
+
- [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode)
|
|
67
|
+
- [GitHub](https://github.com/yeominux/md-feedback)
|
|
68
|
+
- [Documentation](https://github.com/yeominux/md-feedback#readme)
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
[SUL-1.0](https://github.com/yeominux/md-feedback/blob/dev/LICENSE) — Free for personal and non-commercial use.
|
package/bin/md-feedback.cjs
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
const arg = process.argv[2]
|
|
4
|
-
if (arg === '--help' || arg === '-h') {
|
|
5
|
-
console.log('md-feedback - MCP server for markdown annotation review\n')
|
|
6
|
-
console.log('Usage: md-feedback Start MCP server (stdio transport)')
|
|
7
|
-
console.log(' md-feedback --version Print version')
|
|
8
|
-
console.log(' md-feedback --help Show this help\n')
|
|
9
|
-
console.log('Configure in your AI tool\'s MCP settings:')
|
|
10
|
-
console.log(' { "command": "npx", "args": ["-y", "md-feedback"] }')
|
|
11
|
-
process.exit(0)
|
|
12
|
-
}
|
|
13
|
-
if (arg === '--version' || arg === '-v') {
|
|
14
|
-
const pkg = require('../package.json')
|
|
15
|
-
console.log(pkg.version)
|
|
16
|
-
process.exit(0)
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
require('../dist/mcp-server.js')
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const arg = process.argv[2]
|
|
4
|
+
if (arg === '--help' || arg === '-h') {
|
|
5
|
+
console.log('md-feedback - MCP server for markdown annotation review\n')
|
|
6
|
+
console.log('Usage: md-feedback Start MCP server (stdio transport)')
|
|
7
|
+
console.log(' md-feedback --version Print version')
|
|
8
|
+
console.log(' md-feedback --help Show this help\n')
|
|
9
|
+
console.log('Configure in your AI tool\'s MCP settings:')
|
|
10
|
+
console.log(' { "command": "npx", "args": ["-y", "md-feedback"] }')
|
|
11
|
+
process.exit(0)
|
|
12
|
+
}
|
|
13
|
+
if (arg === '--version' || arg === '-v') {
|
|
14
|
+
const pkg = require('../package.json')
|
|
15
|
+
console.log(pkg.version)
|
|
16
|
+
process.exit(0)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
require('../dist/mcp-server.js')
|
package/dist/mcp-server.js
CHANGED
|
@@ -22416,13 +22416,13 @@ function log(msg) {
|
|
|
22416
22416
|
}
|
|
22417
22417
|
var server = new McpServer({
|
|
22418
22418
|
name: "md-feedback",
|
|
22419
|
-
version: "0.
|
|
22419
|
+
version: "0.9.2"
|
|
22420
22420
|
});
|
|
22421
22421
|
registerTools(server);
|
|
22422
22422
|
async function main() {
|
|
22423
22423
|
const transport = new StdioServerTransport();
|
|
22424
22424
|
await server.connect(transport);
|
|
22425
|
-
log(`v${"0.
|
|
22425
|
+
log(`v${"0.9.2"} ready (stdio)`);
|
|
22426
22426
|
}
|
|
22427
22427
|
main().catch((err) => {
|
|
22428
22428
|
log(`fatal: ${err}`);
|
package/package.json
CHANGED
|
@@ -1,56 +1,60 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "md-feedback",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for MD Feedback
|
|
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--agent-memory",
|
|
35
|
-
"keywords": [
|
|
36
|
-
"mcp",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "md-feedback",
|
|
3
|
+
"version": "0.9.2",
|
|
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--agent-memory",
|
|
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
|
+
}
|