@402md/mcp 0.1.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 +635 -0
- package/dist/index.js +81431 -0
- package/dist/index.js.map +1 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@402md/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server that transforms SKILL.md files into executable tools for AI agents — auto-pays via x402",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"402md-mcp": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsup",
|
|
15
|
+
"dev": "tsup --watch",
|
|
16
|
+
"lint": "eslint src/",
|
|
17
|
+
"lint:fix": "eslint src/ --fix",
|
|
18
|
+
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
|
|
19
|
+
"format:check": "prettier --check 'src/**/*.ts' '__tests__/**/*.ts'",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"prepublishOnly": "npm run build"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@402md/skillmd": "^0.1.1",
|
|
27
|
+
"@402md/x402": "^0.1.0",
|
|
28
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
29
|
+
"zod": "^3.23.0"
|
|
30
|
+
},
|
|
31
|
+
"optionalDependencies": {
|
|
32
|
+
"viem": "^2.0.0",
|
|
33
|
+
"@stellar/stellar-sdk": "^12.0.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@eslint/js": "^9.28.0",
|
|
37
|
+
"@types/node": "^22.15.21",
|
|
38
|
+
"eslint": "^9.28.0",
|
|
39
|
+
"eslint-config-prettier": "^10.1.5",
|
|
40
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
41
|
+
"globals": "^16.1.0",
|
|
42
|
+
"lint-staged": "^16.1.0",
|
|
43
|
+
"prettier": "^3.5.3",
|
|
44
|
+
"tsup": "^8.5.0",
|
|
45
|
+
"typescript": "^5.8.3",
|
|
46
|
+
"typescript-eslint": "^8.34.0",
|
|
47
|
+
"vitest": "^3.2.1"
|
|
48
|
+
},
|
|
49
|
+
"lint-staged": {
|
|
50
|
+
"*.ts": [
|
|
51
|
+
"eslint --fix",
|
|
52
|
+
"prettier --write"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"402md",
|
|
57
|
+
"mcp",
|
|
58
|
+
"skill.md",
|
|
59
|
+
"x402",
|
|
60
|
+
"ai-agents",
|
|
61
|
+
"payment",
|
|
62
|
+
"model-context-protocol",
|
|
63
|
+
"claude"
|
|
64
|
+
],
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"repository": {
|
|
67
|
+
"type": "git",
|
|
68
|
+
"url": "https://github.com/402md/mcp"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=18"
|
|
72
|
+
}
|
|
73
|
+
}
|