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

@iflow-mcp/washyu-ansible-mcp-server

v1.0.0

Published

MCP server for Ansible CLI integration

Downloads

21

Readme

Ansible MCP Server

A Model Context Protocol (MCP) server that enables AI assistants to manage infrastructure using Ansible and Terraform.

Features

  • 58 Infrastructure Management Tools

    • Ansible playbook creation and execution
    • Terraform infrastructure provisioning
    • Hardware discovery and inventory
    • Security scanning and auditing
    • Service deployment from catalog
    • Network device management
    • Environment management (test/staging/production)
  • AI-Optimized Design

    • Flexible playbook creation accepting YAML strings
    • Comprehensive error handling
    • Context persistence between sessions
    • Dynamic tool loading for services
  • Cross-Platform Support

    • Linux server deployment
    • Windows client support via SSE proxy
    • Remote server management

Quick Start

Prerequisites

  • Node.js 16+
  • Ansible 2.9+
  • Terraform (optional)

Installation

# Clone the repository
git clone https://github.com/yourusername/ansible-mcp-server.git
cd ansible-mcp-server

# Install dependencies
npm install

# Copy and configure environment
cp .env.example .env
# Edit .env with your settings

# Run the server
npm start

For Claude Desktop

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "ansible": {
      "command": "node",
      "args": ["/path/to/ansible-mcp-server/src/index.js"],
      "env": {
        "PROXMOX_HOST": "your-proxmox-host",
        "PROXMOX_USER": "root@pam",
        "PROXMOX_PASSWORD": "your-password"
      }
    }
  }
}

Windows Users

For Windows Claude Desktop, use the SSE proxy:

  1. Deploy the MCP server to a Linux host
  2. Run the SSE server on the Linux host
  3. Configure Claude Desktop to use the Windows client

See Windows Setup Guide for details.

Available Tools

Ansible Tools

  • create-playbook-flexible - Create playbooks with YAML strings or objects
  • ansible-playbook - Run Ansible playbooks
  • ansible-task - Run ad-hoc Ansible tasks
  • ansible-role - Execute Ansible roles
  • validate-playbook - Validate playbook syntax
  • create-role-structure - Generate Ansible role directories

Infrastructure Tools

  • hardware-scan - Comprehensive hardware discovery
  • storage-analysis - Storage and SMART health analysis
  • network-interfaces - Network adapter discovery
  • discover-proxmox - Discover Proxmox VMs
  • generate-inventory - Create Ansible inventories

Security Tools

  • security-quick-scan - Quick security assessment
  • security-scan-ports - Port scanning
  • security-check-passwords - Password policy audit
  • security-audit-accounts - User account audit
  • security-check-ssh - SSH configuration audit

Service Management

  • browse-services - Browse service catalog
  • deploy-service - Deploy services from catalog
  • list-environments - List deployment environments
  • deploy-to-environment - Deploy with environment protection

Documentation

Testing

Run the comprehensive feature test suite:

# Run tests in development environment
npm test

# Test specific environments
npm run test:dev      # Development
npm run test:qa       # QA
npm run test:staging  # Staging
npm run test:prod     # Production

# Verbose output for debugging
npm run test:verbose

Our feature tests validate complete VM lifecycle workflows including:

  • VM creation from Proxmox templates
  • Service installation (Jenkins, etc.)
  • Service verification and management
  • VM deletion and cleanup
  • MCP context management

See Testing Guidelines for detailed information.

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments