Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
mcp-server-text-editor
Claim
by
bhouston
npm
GitHub
Developer Tools
File Systems
TypeScript
MIT License
294
4
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
mcp-server-text-editor
bin
.github
src
test
.vscode
eslint.config.js
.gitignore
LICENSE
.npmignore
.nvmrc
package.json
pnpm-lock.yaml
.prettierignore
.prettierrc
README.md
tsconfig.json
vitest.config.ts
{ "name": "mcp-server-text-editor", "description": "An open source implementation of the Claude built-in text editor tool", "version": "1.0.1", "type": "module", "bin": "bin/cli.js", "files": [ "dist" ], "repository": { "type": "git", "url": "git+https://github.com/bhouston/mcp-server-text-editor.git" }, "homepage": "https://github.com/bhouston/mcp-server-text-editor", "scripts": { "build": "tsc && chmod 755 ./dist/index.js", "start": "node dist/index.js", "typecheck": "pnpm -r typecheck", "lint": "eslint . --fix", "format": "prettier . --write", "clean": "rimraf dist", "clean:all": "rimraf node_modules dist", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage" }, "keywords": [ "claude", "text-editor", "mcp", "model-context-protocol", "ai-tools" ], "author": "Ben Houston", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "rimraf": "^6.0.1", "zod": "^3.24.2" }, "devDependencies": { "@eslint/js": "^9", "@types/node": "^22.13.10", "@typescript-eslint/eslint-plugin": "^8.23.0", "@typescript-eslint/parser": "^8.23.0", "@vitest/coverage-v8": "^3.0.8", "@vitest/ui": "^3.0.8", "eslint": "^9.0.0", "eslint-config-prettier": "^9", "eslint-import-resolver-typescript": "^3.8.3", "eslint-plugin-import": "^2", "eslint-plugin-prettier": "^5", "eslint-plugin-promise": "^7.2.1", "eslint-plugin-unused-imports": "^4.1.4", "prettier": "^3.5.1", "type-fest": "^4.37.0", "typescript": "^5.8.2", "typescript-eslint": "^8.23.0", "vitest": "^3.0.8" } }