mcp-files
Version:
Enables agents to quickly find and edit code in a codebase with surgical precision. Find symbols, edit them everywhere
99 lines (98 loc) • 3.17 kB
JSON
{
"name": "mcp-files",
"version": "1.5.3",
"type": "module",
"description": "Enables agents to quickly find and edit code in a codebase with surgical precision. Find symbols, edit them everywhere",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-files": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:code",
"build:code": "npm run ts -- bin/bundle.ts && echo 'Build succeeded'",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist --declarationMap false",
"build:check": "tsc --noEmit",
"build:watch": "tsc --watch --incremental",
"build:clean": "npx rimraf dist/* *.tsbuildinfo",
"bundle:types": "rollup --config rollup.config.dts.js",
"bundle:all": "npm run build:types && npm run build:code && npm run bundle:types",
"start": "dist/index.js",
"start:check": "dist/index.js --check",
"start:http": "TRANSPORT=http dist/index.js",
"dev": "npm run ts -- src/index.ts",
"dev:http": "TRANSPORT=http npm run dev",
"cli": "npm run ts -- src/index.ts",
"inspect": "npx fastmcp inspect src/index.ts",
"ts": "tsx",
"eslint": "eslint --cache",
"lint": "npm run eslint -- src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"lint:full": "npm run build:check && npm run lint",
"test": "vitest run",
"test:verbose": "npm run test -- --reporter=verbose",
"test:full": "npm run build:clean && npm run lint:full && npm test && npm run bundle:all && npm run start:check",
"prepack": "npm run test:full",
"publish:dry": "npm pack --dry-run",
"publish:npm": "npm publish",
"publish:docker": "bin/docker-publish.sh",
"publish:all": "npm run publish:npm && npm run publish:docker && npm run publish:test",
"publish:test": "npx mcp-files --help",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"mcp",
"cursor",
"claude",
"model-context-protocol",
"code-analysis",
"symbol-search",
"text-replacement",
"import-inspection",
"notifications",
"llm",
"tools",
"files"
],
"author": "Ariel Flesler <aflesler@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flesler/mcp-files.git"
},
"homepage": "https://github.com/flesler/mcp-files#readme",
"bugs": {
"url": "https://github.com/flesler/mcp-files/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"fast-glob": "^3.3.3",
"fastmcp": "^3.9.0",
"lodash": "^4.17.21",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/lodash": "^4.14.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"esbuild": "^0.25.8",
"eslint": "^8.57.0",
"rollup": "^4.46.2",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-dts": "^6.2.1",
"tsx": "^4.20.3",
"types-package-json": "^2.0.39",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}