mirror of
https://github.com/thedaviddias/mcp-llms-txt-explorer.git
synced 2025-10-19 03:17:32 +03:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@thedaviddias/mcp-llms-txt-explorer",
|
|
"version": "0.2.0",
|
|
"description": "A Model Context Protocol server for exploring websites with llms.txt files",
|
|
"type": "module",
|
|
"exports": "./build/index.js",
|
|
"bin": {
|
|
"mcp-llms-txt-explorer": "./build/index.js"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
|
|
"prepare": "npm run build",
|
|
"watch": "tsc --watch",
|
|
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
|
|
"test": "tsc --noEmit",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "0.6.0",
|
|
"@types/node-fetch": "^2.6.12",
|
|
"node-fetch": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.24",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"llms-txt",
|
|
"model-context-protocol",
|
|
"claude"
|
|
],
|
|
"packageManager": "pnpm@9.15.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"author": "David Dias",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/thedaviddias/mcp-llms-txt-explorer.git"
|
|
}
|
|
}
|