mcp

(★ 9,628)

Open source MCP Servers for AWS

File Explorer

Showing a partial file list — download the zip above to see everything.

  • .gitignore
  • .gitleaks.toml
  • .pre-commit-config.yaml
  • .python-version
  • .ruff.toml
  • .secrets.baseline
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • DESIGN_GUIDELINES.md
  • DEVELOPER_GUIDE.md
  • LICENSE
  • NOTICE
  • README.md
  • VIBE_CODING_TIPS_TRICKS.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Showing a partial file list.

Release Timeline

Actively Maintained

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

timeout

View Details ▼

Run a command with a time limit.

timeout 3s sleep 10

Run `sleep 10` and terminate it after 3 seconds:

timeout {{[-s|--signal]}} {{INT|HUP|KILL|...}} {{5s}} {{sleep 10}}

Send a signal to the command after the time limit expires (`TERM` by default, `kill -l` to list all signals):

timeout {{[-v|--verbose]}} {{0.5s|1m|1h|1d|...}} {{command}}

Send verbose output to `stderr` showing signal sent upon timeout:

🔍

uv cache

View Details ▼

Manage `uv`'s global cache directory.

uv cache dir

Show the cache directory path:

uv cache clean

Clean the entire cache (removes all cached packages and environments):

uv cache clean {{package1 package2 ...}}

Clean the cache for specific packages:

🔍

uv python

View Details ▼

Manage Python versions and installations.

uv python list

List all available Python installations:

uv python install {{version}}

Install a Python version:

uv python uninstall {{version}}

Uninstall a Python version:

🔍

uvx

View Details ▼

This command is an alias of `uv tool run`.

tldr uv tool

View documentation for the original command:

// repository documentation