@casualtheorics/argdown-mcp 0.2.0 → 0.3.0
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 +317 -75
- package/dist/cli.js +220469 -0
- package/dist/server.js +658 -588
- package/package.json +48 -37
package/package.json
CHANGED
|
@@ -1,51 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@casualtheorics/argdown-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "stdio MCP server wrapping the Argdown argumentation toolchain (parse + JSON export + Dung grounded extension)",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": "./dist/server.js",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist/server.js"
|
|
9
|
-
],
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=24"
|
|
12
|
-
},
|
|
13
|
-
"os": [
|
|
14
|
-
"!win32"
|
|
15
|
-
],
|
|
16
|
-
"packageManager": "yarn@4.14.1",
|
|
17
|
-
"publishConfig": {
|
|
18
|
-
"access": "public"
|
|
19
|
-
},
|
|
20
5
|
"keywords": [
|
|
21
|
-
"mcp",
|
|
22
|
-
"model-context-protocol",
|
|
23
6
|
"argdown",
|
|
24
7
|
"argumentation",
|
|
25
|
-
"claude"
|
|
8
|
+
"claude",
|
|
9
|
+
"mcp",
|
|
10
|
+
"model-context-protocol"
|
|
26
11
|
],
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "https://github.com/casualtheorics/argdown-mcp.git"
|
|
30
|
-
},
|
|
31
12
|
"homepage": "https://github.com/casualtheorics/argdown-mcp#readme",
|
|
32
13
|
"bugs": {
|
|
33
14
|
"url": "https://github.com/casualtheorics/argdown-mcp/issues"
|
|
34
15
|
},
|
|
35
16
|
"license": "MIT",
|
|
36
17
|
"author": "Casual Theorics",
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/casualtheorics/argdown-mcp.git"
|
|
21
|
+
},
|
|
22
|
+
"bin": {
|
|
23
|
+
"argdown-cli": "./dist/cli.js",
|
|
24
|
+
"argdown-mcp": "./dist/server.js"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/server.js",
|
|
28
|
+
"dist/cli.js"
|
|
29
|
+
],
|
|
30
|
+
"os": [
|
|
31
|
+
"!win32"
|
|
32
|
+
],
|
|
33
|
+
"type": "module",
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
49
36
|
},
|
|
50
37
|
"scripts": {
|
|
51
38
|
"build": "tsup",
|
|
@@ -53,8 +40,32 @@
|
|
|
53
40
|
"typecheck": "tsc --noEmit",
|
|
54
41
|
"test": "vitest run",
|
|
55
42
|
"smoke": "bash scripts/smoke.sh",
|
|
43
|
+
"smoke:deno": "bash scripts/smoke-deno.sh",
|
|
56
44
|
"bundle-sanity": "bash scripts/bundle-sanity.sh",
|
|
57
|
-
"
|
|
45
|
+
"lint": "oxlint",
|
|
46
|
+
"lint:fix": "oxlint --fix",
|
|
47
|
+
"format": "oxfmt",
|
|
48
|
+
"format:check": "oxfmt --check",
|
|
49
|
+
"prepublishOnly": "yarn build && yarn typecheck && yarn lint && yarn format:check && yarn test",
|
|
58
50
|
"release": "yarn npm publish --access public"
|
|
59
|
-
}
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@argdown/core": "2.0.1",
|
|
54
|
+
"@argdown/node": "2.0.3",
|
|
55
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
56
|
+
"@rollup/rollup-darwin-arm64": "4.60.3",
|
|
57
|
+
"@types/node": "24.12.4",
|
|
58
|
+
"@yarnpkg/sdks": "3.2.3",
|
|
59
|
+
"oxfmt": "0.51.0",
|
|
60
|
+
"oxlint": "1.66.0",
|
|
61
|
+
"oxlint-tsgolint": "0.23.0",
|
|
62
|
+
"tsup": "8.5.1",
|
|
63
|
+
"typescript": "5.9.3",
|
|
64
|
+
"vitest": "4.1.6",
|
|
65
|
+
"zod": "3.25.76"
|
|
66
|
+
},
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=24"
|
|
69
|
+
},
|
|
70
|
+
"packageManager": "yarn@4.14.1"
|
|
60
71
|
}
|