MCP.so
登录

filesystem

@QuantGeekDev

关于 filesystem

Filesystem MCP server with SSE capabilities

基本信息

分类

文件与存储

运行时

node

传输方式

stdio

发布者

QuantGeekDev

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "filesystem": {
      "command": "node",
      "args": [
        "/absolute/path/to/filesystem/dist/index.js"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

文件与存储 分类下的更多 MCP 服务器