file-writer-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@file-writer-mcpwrite a table of employees to employees.csv"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
File Writer MCP Server
A Node.js implementation of the Model Context Protocol (MCP) designed for seamless file operations within LM Studio and other MCP-compatible environments. This server provides a robust interface for large language models to create, append, and manage files in multiple formats including Plain Text, Markdown, CSV, and Microsoft Excel (XLSX).
Features
Multi-Format Support: Handles data transformation for .txt, .md, .csv, and .xlsx files.
Structured Data Processing: Accepts table data as JSON objects and converts them into the requested format automatically.
Flexible Write Modes:
Append (Default): Adds new data to the end of existing files.
Overwrite: Replaces existing files with new content.
Numbered Backup: Preserves existing data by creating incremented versions (e.g., file.1.csv).
Security Focused: Restricts all file operations to a user-specified root directory to prevent unauthorized path traversal.
Excel Integration: Utilizes ExcelJS for high-fidelity generation of binary spreadsheet files.
Installation
Prerequisites
Node.js (v18 or higher)
npm
Setup
Clone the repository or copy the source files to your local machine.
Install the required dependencies:
npm installBuild the project:
npm run build
Configuration for LM Studio
To use this server in LM Studio, add it to your MCP settings with the following configuration:
{
"mcpServers": {
"file-writer": {
"command": "node",
"args": [
"C:/Users/szpon/file_writer_mcp/dist/index.js",
"--root",
"C:/your/default/directory"
]
}
}
}Arguments
--root <path>: (Required) The absolute path to the default directory for relative file operations.--overwrite: (Optional/Legacy) Provided for compatibility with older configs; ignored in favor of tool selection.--backup: (Optional/Legacy) Provided for compatibility with older configs; ignored in favor of tool selection.
Tool Usage
The server provides three distinct tools to give you clear control over file handling directly from the LM Studio sidebar:
write_file: Use this for standard operations. It appends data to existing files or creates them if they do not exist.write_file_overwrite: Use this to completely replace an existing file with new data.write_file_backup: Use this to save data while preserving the original. If the file exists, it creates a numbered backup (e.g.,data.1.csv).
Tool Arguments
path(string): The filename or full absolute path. If a relative path is provided, it resolves against the--rootdirectory. If an absolute path is provided, the server writes directly to that location.format(string): The desired file extension (txt,md,csv, orxlsx).data(object):headers(string[]): Column names for table formats.rows(any[][]): The dataset to be written.content(string, optional): Plain text content for .txt files.
Development
Running Tests
The project uses Vitest for unit testing. To execute the test suite:
npm testBuilding
To compile the TypeScript source into the distribution directory:
npm run buildLicense
This project is provided as-is for integration with LM Studio and other MCP clients.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thekogit/file_writer_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server