-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mcp-delphi-dmvc-docs",
"version": "1.0.1",
"mcpName": "io.github.avelsys/dmvc-docs",
"description": "MCP server with an original, comprehensive DelphiMVCFramework guide (PT-BR) plus ready-to-use DMVC code snippets - built for use with Claude Code and other MCP clients",
"type": "module",
"main": "./build/index.js",
"bin": {
"mcp-delphi-dmvc-docs": "./build/index.js"
},
"files": [
"build",
"data",
"scripts",
"README.md",
"LICENSE"
],
"scripts": {
"ingest": "node scripts/ingest-manual.mjs",
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"delphi",
"dmvcframework",
"delphimvcframework",
"claude",
"claude-code",
"documentation"
],
"author": {
"name": "Alessandro Avelino",
"email": "avelinoalessandro@gmail.com",
"url": "https://github.com/avelsys"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/avelsys/mcp-delphi-dmvc-docs.git"
},
"homepage": "https://github.com/avelsys/mcp-delphi-dmvc-docs#readme",
"bugs": {
"url": "https://github.com/avelsys/mcp-delphi-dmvc-docs/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3",
"pdf-parse": "^1.1.1"
}
}