KS
Killer-Skills

uv-python-tool-installer — Categories.community

v1.0.0
GitHub

About this Skill

Perfect for Python Development Agents needing streamlined package installation capabilities. OpenMateCode of opencode, just branch from MateBot, using free token anytime with tg

aresbit aresbit
[0]
[0]
Updated: 2/20/2026

Quality Score

Top 5%
65
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add aresbit/OpenMateCode/uv-python-tool-installer

Agent Capability Analysis

The uv-python-tool-installer MCP Server by aresbit is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion.

Ideal Agent Persona

Perfect for Python Development Agents needing streamlined package installation capabilities.

Core Value

Empowers agents to install Python tools with a single command using uv, supporting packages from PyPI and handling installations on macOS, Linux, and Windows through bash and powershell scripts.

Capabilities Granted for uv-python-tool-installer MCP Server

Installing ruff for code linting
Setting up specific versions of packages for reproducibility
Automating development environment setups with uv

! Prerequisites & Limits

  • Requires internet access for package download
  • Limited to packages available on PyPI
  • macOS and Linux require bash, Windows requires powershell
Project
SKILL.md
1.8 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Uv Python Tool Installer

Install Python tools with a single command. Powered by uv.

Quick Start

macOS and Linux

bash
1curl -LsSf uvx.sh/<package>/install.sh | sh

Replace <package> with any PyPI package name.

Windows

bash
1powershell -ExecutionPolicy ByPass -c "irm https://uvx.sh/<package>/install.ps1 | iex"

Examples

Install ruff

bash
1curl -LsSf uvx.sh/ruff/install.sh | sh

Install a specific version

bash
1curl -LsSf uvx.sh/ruff/0.8.3/install.sh | sh

Passing arguments

bash
1# Force installation 2curl -LsSf uvx.sh/ruff/install.sh | sh -s -- --force 3 4# Install from a specific index 5curl -LsSf uvx.sh/cmake/install.sh | sh -s -- --index https://download.pytorch.org/whl/cpu

Scripts

install.sh

Simple bash script to install Python tools:

bash
1#!/bin/bash 2# Install Python tools using uvx.sh 3# Usage: ./install.sh <package> [version] [--force] [--index URL] 4 5PACKAGE=$1 6VERSION=$2 7shift 2 8 9if [ -n "$VERSION" ]; then 10 URL="https://uvx.sh/${PACKAGE}/${VERSION}/install.sh" 11else 12 URL="https://uvx.sh/${PACKAGE}/install.sh" 13fi 14 15curl -LsSf "$URL" | sh -s -- "$@"

Usage:

bash
1./scripts/install.sh ruff 2./scripts/install.sh ruff 0.8.3 3./scripts/install.sh ruff 0.8.3 --force

Common Python Tools

  • ruff - Fast Python linter
  • black - Python code formatter
  • mypy - Static type checker
  • httpie - Modern HTTP client
  • pipx - Install and run Python applications in isolated environments
  • jupyter - Jupyter notebooks
  • poetry - Python dependency management

Notes

  • Tools are installed to ~/.local/bin by default
  • Ensure ~/.local/bin is in your PATH
  • Uses uv under the hood for fast, reliable installation
  • Works with any PyPI package that provides command-line tools

Related Skills

Looking for an alternative to uv-python-tool-installer or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication