mcp-jfrog vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-jfrog by jfrog | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 118 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraSecurity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-jfrog · Summary
Experimental MCP server for JFrog platform API providing repository management, build tracking, and security scanning capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-jfrog · Use cases
- Automate repository management tasks in CI/CD pipelines
- Monitor and analyze build artifacts for security vulnerabilities
- Integrate JFrog platform capabilities with AI assistants
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
mcp-jfrog · Install
Installation
Via Smithery
npx -y @smithery/cli install @jfrog/mcp-jfrog --client claudeManual Setup
- Install dependencies:
npm install - Configure environment variables:
- JFROG_ACCESS_TOKEN: Your JFrog access token - JFROG_URL: Base URL for your JFrog platform
- For Claude Desktop, add to
claude_desktop_config.json:
{
"mcpServers": {
"jfrog": {
"command": "node",
"args": ["/path/to/mcp-jfrog/dist/index.js"],
"env": {
"JFROG_ACCESS_TOKEN": "your_token",
"JFROG_URL": "https://your-jfrog-instance.com"
}
}
}
}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.