Open Source

Install AI skills once,
available everywhere.

AMP is a package-manager for MCP servers. Run amp add once and AMP injects the tool into every AI client on your machine.

Get Started View on GitHub
Windows
macOS / Linux
irm https://raw.githubusercontent.com/ShadowsKeep/amp/latest/install.ps1 | iex
curl -fsSL https://raw.githubusercontent.com/ShadowsKeep/amp/latest/install.sh | bash

Everything you need

One CLI to manage all your AI tools across every client.

One command install

Add any MCP server once. AMP injects it into Claude Desktop, Cursor, Windsurf, and more automatically.

🔒

Permission prompts

AMP shows exactly what permissions each tool needs — network, filesystem, subprocess — before writing anything.

🔍

Registry search

Search the official MCP registry and Smithery in parallel. Supports npm:, pip:, and github: prefixes.

🌐

Bridge mode

Expose all your installed MCP tools as a local OpenAI-compatible API at localhost:1337.

📦

Project & global scopes

Install tools per-project with amp.json or globally with -g. Lockfile keeps everything reproducible.

🩺

Doctor command

Run amp doctor to check runtimes, detect installed AI clients, and diagnose project setup.

Quick start

Get up and running in seconds.

Project setup
# Create a new project
amp init

# Add an MCP server
amp add filesystem
amp add github:org/repo
amp add npm:my-mcp-pkg
Manage packages
# Install all from amp.json
amp install

# List installed tools
amp list

# Search the registry
amp search postgres
Global install
# Install globally (all clients)
amp add -g filesystem

# Remove a package
amp remove filesystem

# Check your environment
amp doctor
Bridge mode
# Start OpenAI-compatible proxy
# Exposes tools at localhost:1337
amp bridge

# Use with any OpenAI SDK
# base_url = "http://localhost:1337"