MCP Catalogs
Home

keyshade-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

keyshade-mcp
by keyshade-xyz
filesystem
by modelcontextprotocol
Stars★ 8★ 85,748
30d uses
Score3777
Official
Categories
Developer ToolsSecurityProductivity
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit5 mo agothis month

keyshade-mcp · Summary

Keyshade MCP server provides secure API access to manage secrets and keys within development environments.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

keyshade-mcp · Use cases

  • Securely retrieving API keys and secrets during development
  • Automating credential management in CI/CD pipelines
  • Accessing sensitive environment variables without hardcoding

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

keyshade-mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/keyshade-xyz/keyshade-mcp.git
cd keyshade-mcp
  1. Install dependencies:
pnpm install
  1. Build the project:
pnpm build

Configuration for Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "keyshade": {
      "command": "node",
      "args": [
        "YOUR_ABSOLUTE_PATH_TO/build/index.js"
      ],
      "env": {
        "KEYSHADE_API_KEY": "YOUR_KEYSHADE_API_KEY"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.