filesystem
@QuantGeekDev
About filesystem
Filesystem MCP server with SSE capabilities
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"filesystem": {
"command": "node",
"args": [
"/absolute/path/to/filesystem/dist/index.js"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is filesystem?
filesystem is a Model Context Protocol (MCP) server template built with the mcp‑framework. It provides a starting point for developers to create custom MCP tools and integrate them with Claude Desktop.
How to use filesystem?
Install dependencies with npm install, build with npm run build, then add the server to your Claude Desktop configuration file (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%/Claude/claude_desktop_config.json) using a node command for local development or npx after publishing.
Key features of filesystem
- Built‑in example tool ready to extend.
- CLI command to add new tools (
mcp add tool <name>). - Schema validation via Zod for tool inputs.
- Designed for easy publishing to npm.
- Configured to work with Claude Desktop out‑of‑the‑box.
Use cases of filesystem
- Creating a custom data‑processing tool.
- Building an API client as an MCP tool.
- Developing a file‑handler tool.
- Prototyping new MCP tools before publishing.
- Learning how to develop and deploy MCP servers.
FAQ from filesystem
How do I add a new tool?
Use the CLI command mcp add tool <name> from the project root.
How do I publish filesystem to npm?
Update package.json, run npm run build, then npm login and npm publish. After publishing, users can run it with npx filesystem.
How do I configure filesystem for Claude Desktop?
Add a JSON entry under mcpServers in the Claude Desktop config file. For local development use "command": "node" with the path to dist/index.js; after publishing use "command": "npx" with "args": ["filesystem"].
What runtime does filesystem require?
Node.js is required; the project uses TypeScript and is built with npm run build.
What is mcp‑framework?
mcp‑framework is a library for building MCP servers, available at https://github.com/QuantGeekDev/mcp-framework.
More Files & Storage MCP servers
S3 MCP Server
samuraikunMCP server to integrate AWS S3 and LLM
Filesystem MCP Server (@shtse8/filesystem-mcp)
shtse8📁 Secure, efficient MCP filesystem server - token-saving batch operations with project root confinement
PDF Reader MCP Server (@sylphlab/pdf-reader-mcp)
sylphlab📄 The PDF intelligence layer for AI agents — Agent Document Twin, evidence-first extraction, visual crops, OCR provenance, trust reports, and benchmark-gated releases. MCP server for Claude, Cursor, VS Code, and any MCP client.
Filesystem MCP Server
cyanheadsA Model Context Protocol (MCP) server for platform-agnostic file capabilities, including advanced search/replace and directory tree traversal
mcp-v8: V8 JavaScript MCP Server
r33drichardsMCP server that exposes a V8 JavaScript runtime as a tool for AI agents like Claude and Cursor. Supports persistent heap snapshots via S3 or local filesystem, and is ready for integration with modern AI development environments.
Comments