forked from mcp-get/community-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "@mcp-get-community/server-llm-txt",
"version": "0.6.2",
"description": "MCP server that extracts and serves context from llm.txt files, enabling AI models to understand file structure, dependencies, and code relationships in development environments",
"author": "Michael Latman (https://michaellatman.com)",
"license": "MIT",
"type": "module",
"bin": {
"mcp-server-llm-txt": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"@types/node-fetch": "^2.6.12",
"node-fetch": "^3.3.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5",
"jsdom": "^22.1.0",
"@types/jsdom": "^21.1.6"
},
"devDependencies": {
"@types/node": "^20.10.4",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcp-get/community-servers.git"
},
"bugs": {
"url": "https://github.com/mcp-get/community-servers/issues"
},
"homepage": "https://github.com/mcp-get/community-servers#readme",
"publishConfig": {
"access": "public"
}
}