-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "mcp-trinv-server",
"version": "0.0.7",
"description": "un serveur MCP pour accéder à TRINV",
"license": "MIT",
"author": "Christian Queinnec <gerant@trinv.fr>",
"homepage": "https://doc.trinv.fr/trinv-mcp-server",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-trinv-server": "./dist/index.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"France",
"communes",
"cadastre",
"parcelles"
],
"repository": {
"type": "git",
"url": "git@github.com:cqtrinv/trinvmcp.git"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc && chmod +x dist/*.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.18.0",
"minimist": "^1.2.8",
"zod": "^3.25.76"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^1.1.0",
"@types/express": "^5.0.3",
"@types/minimist": "^1.2.5",
"@types/node": "^24.3.0",
"typescript": "^5.9.2"
}
}