Antigravity-style inline markdown commenting as an installable Claude plugin. - MCP Apps webview (markdown-it renderer + comment UI) - three lanes: Answer Now (sendMessage), Add to batch, Submit All (persist+send) - edit/review mode toggle; sidecar comment persistence - self-contained prebuilt server/dist (zero runtime node_modules) - self-marketplace manifest for /plugin install - 11/11 stdio smoke tests passing Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
26 lines
712 B
JSON
26 lines
712 B
JSON
{
|
|
"name": "@tlc/markdown-review-server",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "MCP Apps server backing the markdown-review plugin (comment-on-markdown -> agent).",
|
|
"license": "MIT",
|
|
"bin": { "mcp-md-server": "dist/index.js" },
|
|
"scripts": {
|
|
"build": "node build.mjs",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "node build.mjs --watch"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/ext-apps": "^1.7.0",
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"markdown-it": "^14.1.0",
|
|
"zod": "^4.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/markdown-it": "^14.1.2",
|
|
"@types/node": "^22.10.0",
|
|
"esbuild": "^0.28.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|