npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@easyshell/mcp-server

v1.1.0

Published

MCP server for EasyShell — AI-Native Server Operations Platform. Manage hosts, execute scripts, orchestrate multi-host tasks, and schedule inspections from any AI assistant.

Downloads

281

Readme

npm version MCP Registry Smithery License: MIT

EasyShell MCP Server

Model Context Protocol server for EasyShell: manage hosts, execute scripts, orchestrate multi-host tasks, schedule AI inspections, and access infrastructure operations from AI assistants.

Features

  • 19 tools across 3 tiers
  • Tier 1 Core (6): list_hosts, get_host_detail, execute_script, get_task_detail, list_scripts, ai_chat
  • Tier 2 Management (8): list_recent_tasks, create_script, list_clusters, get_dashboard_stats, get_host_metrics, list_scheduled_tasks, trigger_inspection, get_inspect_reports
  • Tier 3 Advanced (5): manage_tags, query_audit_logs, approve_task, send_notification, search_knowledge

Quick Start

Claude Desktop

Add to your MCP configuration:

{
  "mcpServers": {
    "easyshell": {
      "command": "npx",
      "args": ["-y", "@easyshell/mcp-server"],
      "env": {
        "EASYSHELL_URL": "http://localhost:18080",
        "EASYSHELL_USER": "easyshell",
        "EASYSHELL_PASS": "easyshell@changeme"
      }
    }
  }
}

Cursor

Use the same MCP server block in your Cursor MCP settings.

OpenCode

Use the same MCP server block in your OpenCode MCP configuration.

Configuration

| Variable | Required | Description | |---|---:|---| | EASYSHELL_URL | Yes | EasyShell server API endpoint (for example http://localhost:18080). | | EASYSHELL_USER | Yes | EasyShell username. | | EASYSHELL_PASS | Yes | EasyShell password. |

Transport Modes

stdio (default)

Used by Claude Desktop, Cursor, OpenCode, and other local AI clients:

npx -y @easyshell/mcp-server

HTTP (SSE + Streamable HTTP)

For remote deployments, Smithery.ai, or browser-based clients:

npx -y @easyshell/mcp-server --port 3000

Bind to all interfaces for remote access:

npx -y @easyshell/mcp-server --port 3000 --host 0.0.0.0

Endpoints:

| Endpoint | Method | Protocol | |---|---|---| | /mcp | POST / GET / DELETE | Streamable HTTP (2025-03-26) | | /sse | GET | Legacy SSE (2024-11-05) | | /messages?sessionId=<id> | POST | Legacy SSE message handler | | /health | GET | Health check |

Full Tool Reference

| Tier | Tool | Purpose | |---|---|---| | Core | list_hosts | List hosts and filter by status. | | Core | get_host_detail | Fetch detailed host information. | | Core | execute_script | Execute script content on selected hosts. | | Core | get_task_detail | Retrieve detailed task execution results. | | Core | list_scripts | List scripts from script library. | | Core | ai_chat | Run natural-language AI operations orchestration. | | Management | list_recent_tasks | Query recent execution tasks. | | Management | create_script | Create and save reusable scripts. | | Management | list_clusters | List host clusters/groups. | | Management | get_dashboard_stats | Get platform KPI and overview stats. | | Management | get_host_metrics | Get host metrics history. | | Management | list_scheduled_tasks | List configured scheduled inspections. | | Management | trigger_inspection | Trigger an inspection immediately. | | Management | get_inspect_reports | Read AI inspection analysis reports. | | Advanced | manage_tags | Manage host tags and assignments. | | Advanced | query_audit_logs | Search audit and compliance logs. | | Advanced | approve_task | Approve or reject high-risk operations. | | Advanced | send_notification | Send notifications to configured channels. | | Advanced | search_knowledge | Search operational knowledge base. |

Auto-Install

npx @easyshell/mcp-server --install

Development

npm ci
npm run build
npm run test
npm run inspector

Links

  • Documentation: https://docs.easyshell.ai
  • Discord: https://discord.gg/WqFD9VQe
  • GitHub: https://github.com/easyshell-ai/easyshell