Documentation

PHAROS Registry API — base URL: https://getpharos.dev

Installation

# Install via pip
pip install pharos-cli

# Or install via npm
npm install -g @pharos/cli

# Verify installation
pharos --version

Search

# Search for a package
pharos search "flight tracker"

# Search with filters
pharos search "memory" --transport stdio --verified

# List all packages in a category
pharos search --category "ai-agents"

Install a Package

# Install a package
pharos install my-test-mcp-server

# Install a specific version
pharos install [email protected]

Audit Check

# Check installed packages for issues
pharos audit

# Audit a specific package before install
pharos audit my-test-mcp-server

Publish

# Publish your MCP server to PHAROS
pharos publish ./my-server

# Publish from a specific directory
pharos publish /path/to/package --registry pharos

Other Commands

# Get package info
pharos info my-test-mcp-server

# List installed packages
pharos list

# Update a package
pharos update my-test-mcp-server

# Remove a package
pharos remove my-test-mcp-server

# Sync from other registries
pharos sync --registry modelcontextprotocol.io

Need more details? Check the GitHub repository.