npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@nazcamedia/mcp-shell

v1.0.3

Published

Servidor MCP para interacción con shell y sistema de archivos

Readme

NAZCAMEDIA MCP Shell

Un servidor MCP (Model Context Protocol) para interacción con shell y sistema de archivos, optimizado para Claude Desktop.

Descripción

Este proyecto es una reimplementación en TypeScript del proyecto WCGW, diseñado para proporcionar a Claude Desktop capacidades de interacción con el sistema de archivos y shell de forma eficiente y segura.

Características

  • Operaciones de Shell: Ejecución de comandos con control de timeout y manejo de comandos interactivos.
  • Operaciones de Archivo: Lectura, escritura y edición de archivos con verificación de sintaxis.
  • Protecciones Integradas: Evita sobrescrituras accidentales y maneja archivos grandes de forma eficiente.
  • Optimizado para Rendimiento: Implementado en TypeScript para reducir la sobrecarga de memoria.

Instalación

Requisitos previos

  • Node.js (v14 o superior)
  • npm o yarn

Pasos de instalación

  1. Clonar el repositorio:

    git clone https://github.com/NAZCAMEDIA/NAZCAMEDIA-mcp-shell.git
    cd NAZCAMEDIA-mcp-shell
  2. Instalar dependencias:

    npm install
  3. Compilar el proyecto:

    npm run build

Uso

Iniciar el servidor

npm start

Por defecto, el servidor se inicia en el puerto 3000. Puedes cambiar el puerto utilizando la variable de entorno PORT:

PORT=3001 npm start

Desarrollo

Para ejecutar el servidor en modo desarrollo con recarga automática:

npm run dev

Integración con Claude Desktop

Para integrar con Claude Desktop, edita el archivo de configuración de Claude:

macOS y Linux

Edita o crea el archivo ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "nazcamedia-shell": {
      "command": "node",
      "args": [
        "/ruta/completa/a/NAZCAMEDIA-mcp-shell/dist/index.js"
      ]
    }
  }
}

Windows

Edita o crea el archivo %APPDATA%\Claude\claude_desktop_config.json:

{
  "mcpServers": {
    "nazcamedia-shell": {
      "command": "node",
      "args": [
        "C:\\ruta\\completa\\a\\NAZCAMEDIA-mcp-shell\\dist\\index.js"
      ]
    }
  }
}

Herramientas MCP disponibles

  • Initialize: Inicializa el entorno de shell y establece el directorio de trabajo.
  • BashCommand: Ejecuta un comando de shell.
  • BashInput: Envía entrada a un proceso interactivo.
  • ReadFiles: Lee el contenido de uno o más archivos.
  • WriteIfEmpty: Crea un nuevo archivo o escribe en un archivo vacío.
  • FileEdit: Edita un archivo existente usando bloques de búsqueda y reemplazo.

Seguridad

Este servidor MCP incluye varias protecciones para evitar operaciones peligrosas:

  • Los archivos deben ser leídos antes de ser editados.
  • Los archivos existentes no vacíos no pueden ser sobrescritos con WriteIfEmpty.
  • Los comandos de shell tienen un timeout configurable.

Licencia

ISC

Créditos

Este proyecto es una reimplementación de WCGW por Aman Rusia, adaptado para las necesidades específicas de NAZCAMEDIA.