PA

Pacman

Created 4 months ago

A Model Context Protocol server that provides package index querying capabilities.

development documentation public

What is Pacman?

An MCP server that provides package index querying capabilities. This server is able to search and retrieve information from package repositories like PyPI, npm, crates.io, Docker Hub, and Terraform Registry.

Documentation

Pacman MCP Server

A Model Context Protocol server that provides package index querying capabilities.

Available Tools

  • search_package
  • package_info
  • search_docker_image
  • docker_image_info
  • terraform_module_latest_version

Installation# Using uv (recommended)

When using uv no specific installation is needed.

Using PIP

Alternatively you can install mcp-server-pacman via pip:

pip install mcp-server-pacman

Using Docker

You can also use the Docker image:

docker pull oborchers/mcp-server-pacman:latest
docker run -i --rm oborchers/mcp-server-pacman

Configuration# Configure for Claude.app

Add to your Claude settings:

Using uvx

"mcpServers": {
  "pacman": {
    "command": "uvx",
    "args": ["mcp-server-pacman"]
  }
}

Using Docker

"mcpServers": {
  "pacman": {
    "command": "docker",
    "args": ["run", "-i", "--rm", "oborchers/mcp-server-pacman:latest"]
  }
}

Using pip installation

"mcpServers": {
  "pacman": {
    "command": "python",
    "args": ["-m", "mcp-server-pacman"]
  }
}

License

mcp-server-pacman is licensed under the MIT License.

Server Config

{
  "mcpServers": {
    "pacman-server": {
      "command": "npx",
      "args": [
        "pacman"
      ]
    }
  }
}

Links & Status

Repository: github.com
Hosted: No
Global: No
Official: Yes

Project Info

Hosted Featured
Created At: Jul 17, 2025
Updated At: Aug 07, 2025
Author: oborchers
Category: community
License: MIT License
Tags:
development documentation public