Skip to main content

filesystem

Local filesystem read/write operations; create, read, update, and delete files. Use when the agent needs this capability via MCP.

Ir para a instalação

Informações da origem

Repositório
RabbitAI-Lab/rabbit-plugins-mcp
Última atividade na origem
26 de julho de 2026 às 14:08
Idioma detectado do SKILL.md
inglês
Estrelas
0
Forks
0

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
filesystem
description
Local filesystem read/write operations; create, read, update, and delete files. Use when the agent needs this capability via MCP.
# filesystem Local filesystem read/write operations; create, read, update, and delete files ## When to Activate - Use **filesystem** from an MCP-aware client - Official Core tasks that filesystem supports - Register filesystem via `claude mcp add` or `.mcp.json` ## Installation filesystem is an MCP server (stdio transport). Register it with Claude Code: ```bash claude mcp add filesystem -- npx @modelcontextprotocol/server-filesystem <path> ``` Or add to `.mcp.json`: ```json { "mcpServers": { "filesystem": { "command": "npx", "args": [ "@modelcontextprotocol/server-filesystem", "<path>" ] } } } ``` A guided installer is at `scripts/install.sh`. ## Verification ```bash claude mcp list ``` ## Details - **Server**: `filesystem` - **Maintainer**: Anthropic官方 - **Protocol**: stdio - **Category**: Official Core - **Priority**: Essential
Ver no GitHub