MCP.so
登录

MCPFileSystem_Client

@Digio-Campus

关于 MCPFileSystem_Client

Client using a File System MCP Server

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

Digio-Campus

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

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

概览

What is MCPFileSystem_Client?

MCPFileSystem_Client is a client application that connects a local LLM (compatible with the OpenAI SDK) to the MCP filesystem server, allowing the model to read and write files in specified directories. It is intended for developers who want to give an LLM controlled access to the local file system.

How to use MCPFileSystem_Client?

  1. Start a local LLM that supports the OpenAI SDK (e.g., Jan).
  2. Edit the .env file to set the model name, system prompt, and server base URL (defaults are provided).
  3. Run node app.js.

Key features of MCPFileSystem_Client

  • Connects an OpenAI‑compatible LLM to the filesystem via MCP.
  • Restricts file access to directories specified in app.js.
  • Uses StdioClientTransport with the official MCP filesystem server.
  • Configured via environment variables (model, prompt, base URL).
  • Requires a model that supports tool/function calling.

Use cases of MCPFileSystem_Client

  • Let an LLM read files from a local project directory.
  • Allow an LLM to write output files (e.g., generated code or reports).
  • Provide controlled file access to an LLM running on a local server.

FAQ from MCPFileSystem_Client

Which directories can the LLM access?

Only the directories listed in the args array inside app.js (by default a folder named files). You can add or change paths there.

What models does MCPFileSystem_Client work with?

It works with any model that is compatible with the OpenAI SDK and supports tool/function calling. The default model in .env example may not work; you must use a model with tool‑calling capability.

How do I change the LLM endpoint?

Modify the BASE_URL environment variable in .env. A default value is already provided.

Does MCPFileSystem_Client run on a remote machine?

No, it launches the MCP filesystem server locally via npx and communicates over stdio. The host machine’s file system is used.

评论

其他 分类下的更多 MCP 服务器