User Quickstart
Install the CLI, find a package, connect it to your AI assistant.
Install the Pharos CLI
The CLI is a single binary. Install it with any of the package managers below — pick whichever you already use.
# Install via pip
pip install pharos-cli
# Or via npm
npm install -g @pharos/cli
# Or via Homebrew
brew install pharos# Verify installation
pharos --versionSearch for a package
Search returns matching packages with descriptions, transport type, and verification status.
# Search for a package
pharos search "filesystem"NAME VERSION TRANSPORT VERIFIED
@modelcontextprotocol/server-filesystem 1.0.0 stdio ✓
@modelcontextprotocol/server-git 1.2.0 stdio ✓
mcp-server-fs 0.4.1 stdioInstall a package
The package binary is cached locally and a config snippet is generated. You can copy it directly into your assistant's config file (see the next step).
# Install a package
pharos install @modelcontextprotocol/server-filesystemConnect to your AI assistant
The config file location and format differ by platform. Pick your assistant below.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/username/Desktop"]
}
}
}After editing, restart Claude Desktop for the change to take effect.
Verify the connection
In a new chat, ask "What MCP tools do you have?" Claude will list the tools it can see from your configured servers.
Audit your setup
pharos audit checks installed packages for known issues, version mismatches, and security advisories. Run it after every install and periodically after that.
# Check installed packages for issues
pharos auditScanning installed packages...
@modelcontextprotocol/server-filesystem 1.0.0 OK
@modelcontextprotocol/server-git 1.2.0 update available → 1.3.0
mcp-server-memory 0.9.0 security advisory (CVE-2025-1234)
2 packages need attention. Run `pharos update` to resolve.Ready to add Pharos discovery to your own agent? Read the Agent Integration guide