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

@this-npm-test-org/connection-filesystem-mcp

v0.1.3

Published

MCP server for local filesystem access. Read, write, search, and manage files and directories with configurable path restrictions.

Readme

Filesystem

MCP server for local filesystem access. Based on the Anthropic reference MCP server. Read files, write files, search directories, and manage filesystem operations with configurable path restrictions for safety.

Useful for processing documents, parsing log files, managing configuration, generating reports to disk, and any workflow that needs to read or write local files.

Install

amodal install mcp filesystem

Tools exposed

  • read_file — Read the complete contents of a file. Returns text content with UTF-8 encoding. Supports any text-based file format.
  • read_multiple_files — Read multiple files in a single call. Returns contents keyed by path. Failed reads return error messages per file without blocking others.
  • write_file — Write content to a file. Creates the file if it doesn't exist. Overwrites if it does. Creates parent directories as needed.
  • edit_file — Apply targeted edits to a file using search-and-replace. Safer than full rewrites for modifying existing files.
  • list_directory — List files and subdirectories at a given path. Returns names with type indicators (file vs directory).
  • directory_tree — Recursive directory listing as a tree structure. Configurable depth limit.
  • move_file — Move or rename a file or directory.
  • search_files — Search for files matching a pattern. Supports glob patterns and recursive search.
  • get_file_info — Get metadata: size, modified time, permissions, file type.

Configuration

env:
  MCP_FILESYSTEM_ALLOWED_PATHS: "/home/user/documents,/var/log"
  • MCP_FILESYSTEM_ALLOWED_PATHS — Comma-separated list of directory paths the server is allowed to access. All operations are restricted to these paths and their subdirectories. Required.

Example usage

  • "Read the contents of /var/log/app.log and summarize any errors from today"
  • "Search for all .env files under /home/user/projects"
  • "Write this CSV report to /home/user/reports/monthly-summary.csv"
  • "List everything in the config directory and show me any YAML files"