MCP Catalogs
Home

mcp-jenkins vs filesystem

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

mcp-jenkins
by lanbaoshen
filesystem
by modelcontextprotocol
Stars★ 120★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsOps & InfraProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

mcp-jenkins · Summary

MCP server for Jenkins integration, providing tools to interact with Jenkins CI/CD through AI assistants.

filesystem · Summary

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

mcp-jenkins · Use cases

  • AI assistant triggering Jenkins builds with custom parameters
  • Automating Jenkins infrastructure management through natural language
  • Retrieving build logs, artifacts, and test reports for analysis
  • Monitoring Jenkins builds and queue status via AI 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

mcp-jenkins · Install

Installation

Using pip:

pip install mcp-jenkins
mcp-jenkins

Using uv (recommended):

pip install uv
uvx mcp-jenkins

Docker:

docker pull ghcr.io/lanbaoshen/mcp-jenkins:latest
docker run -p 9887:9887 --rm ghcr.io/lanbaoshen/mcp-jenkins:latest --transport streamable-http

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "jenkins": {
      "command": "uvx",
      "args": ["mcp-jenkins", "--jenkins-url=YOUR_JENKINS_URL", "--jenkins-username=YOUR_USERNAME", "--jenkins-password=YOUR_TOKEN"]
    }
  }
}

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.