package.json•916 B
{
"name": "mcp-server-filesystem-smart",
"version": "1.0.0",
"description": "LLM-optimized MCP filesystem server with intelligent pagination and ripgrep integration",
"license": "MIT",
"type": "module",
"bin": {
"mcp-server-filesystem-smart": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lofcz/mcp-server-filesystem-smart.git"
},
"keywords": [
"mcp",
"filesystem",
"ripgrep",
"llm",
"ai",
"model-context-protocol"
],
"author": "Your Name",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "node test-interactive.js",
"test:auto": "node test-manual.js",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22",
"typescript": "^5.8.2"
}
}