Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
File Operations MCP Server
Claim
by
bsmi021
GitHub
File Systems
TypeScript
MIT License
4
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
src
Dockerfile
.gitignore
LICENSE
package.json
package-lock.json
.prettierrc
README.md
smithery.yaml
test-destination.txt
test-source.txt
tsconfig.json
{ "name": "file-operations-server", "version": "1.0.0", "description": "MCP server for file operations with enhanced capabilities", "type": "module", "main": "build/index.js", "scripts": { "build": "tsc", "start": "node build/index.js", "dev": "ts-node-esm src/index.ts", "watch": "tsc -w", "clean": "rimraf build", "lint": "eslint src --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "test": "jest", "prepare": "npm run build" }, "keywords": [ "mcp", "file-operations", "streaming", "patch", "watch" ], "author": "Brian W. Smith", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "diff": "^5.1.0", "glob": "^10.3.10", "mime-types": "^2.1.35" }, "devDependencies": { "@types/diff": "^5.0.9", "@types/glob": "^8.1.0", "@types/mime-types": "^2.1.4", "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.2", "jest": "^29.7.0", "prettier": "^3.1.1", "rimraf": "^5.0.5", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "engines": { "node": ">=18.0.0" }, "types": "./build/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/bsmi021/file-operations-server.git" }, "bugs": { "url": "https://github.com/bsmi021/file-operations-server/issues" }, "homepage": "https://github.com/bsmi021/file-operations-server#readme" }