MCP Catalogs
Home

jenkins-mcp-enterprise vs filesystem

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

jenkins-mcp-enterprise
by Jordan-Jarvis
filesystem
by modelcontextprotocol
Stars★ 28★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsOps & InfraMonitoring
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

jenkins-mcp-enterprise · Summary

Advanced Jenkins MCP server with enterprise features for multi-instance management and AI-powered build diagnostics.

filesystem · Summary

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

jenkins-mcp-enterprise · Use cases

  • Diagnose complex build failures across multiple Jenkins instances with AI-powered analysis
  • Search and analyze logs across builds using semantic search when vector search is enabled
  • Manage and configure jobs across different Jenkins instances through a unified interface

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

jenkins-mcp-enterprise · Install

Installation

Prerequisites
  • Python 3.10+
  • Jenkins API access
  • Jenkins username and API token
  • Docker and Docker Compose if you want container deployment
  • Qdrant if you want semantic_search
Install from Source
git clone https://github.com/Jordan-Jarvis/jenkins-mcp-enterprise
cd jenkins-mcp-enterprise
python3 -m pip install -e .
Docker and Compose
cp config/mcp-config.example.yml config/mcp-config.yml
./start-jenkins_mcp_enterprise.sh
Start the Server
jenkins_mcp_enterprise --config config/mcp-config.yml
Claude Desktop Configuration

Add to ~/.claude_desktop_config.json:

{
  "mcpServers": {
    "jenkins": {
      "command": "jenkins_mcp_enterprise",
      "args": ["--config", "config/mcp-config.yml"]
    }
  }
}

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.