2

222222222299999999999999

zmf555/222222222299999999999999
Hosted
0 Stars 18 次浏览 更新于 2026-08-23

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "filesystem": {
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/tmp"
      ],
      "command": "npx"
    }
  }
}

可用工具 (14 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

read_file 3 个参数 需填 1 项

Read the complete contents of a file as text. DEPRECATED: Use read_text_file instead.

必填参数:path

read_text_file 3 个参数 需填 1 项

Read the complete contents of a file from the file system as text. Handles various text encodings and provides detailed error messages if the file cannot be read. Use this tool when you need to examine the contents of a single file. Use the 'head' parameter to read only the first N lines of a file, or the 'tail' parameter to read only the last N lines of a file. Operates on the file as text regardless of extension. Only works within allowed directories.

必填参数:path

read_media_file 1 个参数 需填 1 项

Read an image or audio file. Returns the base64 encoded data and MIME type. Only works within allowed directories.

必填参数:path

read_multiple_files 1 个参数 需填 1 项

Read the contents of multiple files simultaneously. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within allowed directories.

必填参数:paths

write_file 2 个参数 需填 2 项

Create a new file or completely overwrite an existing file with new content. Use with caution as it will overwrite existing files without warning. Handles text content with proper encoding. Only works within allowed directories.

必填参数:path、content

edit_file 3 个参数 需填 2 项

Make line-based edits to a text file. Each edit replaces exact line sequences with new content. Returns a git-style diff showing the changes made. Only works within allowed directories.

必填参数:path、edits

create_directory 1 个参数 需填 1 项

Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently. Perfect for setting up directory structures for projects or ensuring required paths exist. Only works within allowed directories.

必填参数:path

list_directory 1 个参数 需填 1 项

Get a detailed listing of all files and directories in a specified path. Results clearly distinguish between files and directories with [FILE] and [DIR] prefixes. This tool is essential for understanding directory structure and finding specific files within a directory. Only works within allowed directories.

必填参数:path

list_directory_with_sizes 2 个参数 需填 1 项

Get a detailed listing of all files and directories in a specified path, including sizes. Results clearly distinguish between files and directories with [FILE] and [DIR] prefixes. This tool is useful for understanding directory structure and finding specific files within a directory. Only works within allowed directories.

必填参数:path

directory_tree 1 个参数 需填 1 项

Get a recursive tree view of files and directories as a JSON structure. Each entry includes 'name', 'type' (file/directory), and 'children' for directories. Files have no children array, while directories always have a children array (which may be empty). The output is formatted with 2-space indentation for readability. Only works within allowed directories.

必填参数:path

move_file 2 个参数 需填 2 项

Move or rename files and directories. Can move files between directories and rename them in a single operation. If the destination exists, the operation will fail. Works across different directories and can be used for simple renaming within the same directory. Both source and destination must be within allowed directories.

必填参数:source、destination

search_files 3 个参数 需填 2 项

Recursively search for files and directories matching a pattern. Searches through all subdirectories from the starting path. The search is case-insensitive and matches partial names. Returns full paths to all matching items. Great for finding files when you don't know their exact location. Only searches within allowed directories.

必填参数:path、pattern

get_file_info 1 个参数 需填 1 项

Retrieve detailed metadata about a file or directory. Returns comprehensive information including size, creation time, last modified time, permissions, and type. This tool is perfect for understanding file characteristics without reading the actual content. Only works within allowed directories.

必填参数:path

list_allowed_directories

Returns the list of directories that this server is allowed to access. Subdirectories within these allowed directories are also accessible. Use this to understand which directories and their nested paths are available before trying to access files.

该工具无需必填参数,直接调用即可

服务介绍

333333333

相关 MCP 服务