JumpServer MCP Server

by LeeEirc

220 downloads
Not rated
GitHub

Description

# JumpServer MCP Server ## Configure JumpServer Environment File (.env) ```txt # Bearer token to access the JumpServer SWAGGER JSON API, optional api_token=xxxxxxx jumpserver_url=http://jumpserverhost ``` ## Start Docker Container ```bash docker run -d -it -p 8099:8099…

About

# JumpServer MCP Server ## Configure JumpServer Environment File (.env) ```txt # Bearer token to access the JumpServer SWAGGER JSON API, optional api_token=xxxxxxx jumpserver_url=http://jumpserverhost ``` ## Start Docker Container ```bash docker run -d -it -p 8099:8099 --env-file .env --name jms_mcp…

Details

Author
LeeEirc
Downloads
220
Categories
Other

- Deploy

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name JumpServer MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure a .env file with api_token and jumpserver_url, then start the Docker container using docker run -d -it -p 8099:8099 --env-file .env --name jms_mcp ghcr.io/leeeirc/jumpserver-mcp-server:latest. Obtain a Bearer token via the provided curl command. Configure the MCP client with type sse, url http://127.0.0.1:8099/mcp, and the Bearer token in headers.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "jumpserver mcp server": {
            "jumpserver-mcp-server": {
                "command": "docker",
                "args": [
                    "run",
                    "-d",
                    "-it",
                    "-p",
                    "8099:8099",
                    "--env-file",
                    ".env",
                    "--name",
                    "jms_mcp",
                    "ghcr.io/leeeirc/jumpserver-mcp-server:latest"
                ]
            }
        }
    }
}

McpServers

{
    "jumpserver-mcp-server": {
        "command": "docker",
        "args": [
            "run",
            "-d",
            "-it",
            "-p",
            "8099:8099",
            "--env-file",
            ".env",
            "--name",
            "jms_mcp",
            "ghcr.io/leeeirc/jumpserver-mcp-server:latest"
        ]
    }
}

JumpServer MCP Server

Configure JumpServer Environment File (.env)

# Bearer token to access the JumpServer SWAGGER JSON API, optional
api_token=xxxxxxx 
jumpserver_url=http://jumpserverhost

Start Docker Container

docker run -d -it -p 8099:8099 --env-file .env --name jms_mcp ghcr.io/leeeirc/jumpserver-mcp-server:latest

Create JumpServer API Bearer Token for MCP Server


TOKEN=$(curl -s -X POST http://jumpserver_host/api/v1/authentication/auth/ \
  -H "Content-Type: application/json" \
  -d '{
    "username": "admin",
    "password": "xxxx"
  }' \
  --insecure | jq -r '.token')

echo "Your Bearer token: $TOKEN"

MCP Server Configuration

{
    "type": "sse",
    "url": "http://127.0.0.1:8099/mcp",
    "headers": {
        "Authorization": "Bearer xxxxxxxx"
    }
}
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.