New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@pkgseer/cli

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

@pkgseer/cli

CLI companion for PkgSeer - package intelligence for developers and AI assistants

unpublished
Source
npmnpm
Version
0.1.0-alpha.2
Version published
Weekly downloads
72
-53.55%
Maintainers
1
Weekly downloads
 
Created
Source

@pkgseer/cli

CLI and MCP server for PkgSeer — package intelligence for developers and AI assistants.

Query package metadata, security vulnerabilities, dependencies, and quality metrics across npm and PyPI registries.

Installation

# Run directly with npx (no install needed)
npx @pkgseer/cli

# Or install globally
npm install -g @pkgseer/cli

Quick Start

# Authenticate (optional, for higher rate limits)
pkgseer login

# Start MCP server for AI assistants
pkgseer mcp

CLI Commands

pkgseer --help           # Show all commands
pkgseer --version        # Show version

pkgseer login            # Authenticate with PkgSeer
pkgseer logout           # Clear stored credentials
pkgseer auth status      # Check authentication status

pkgseer mcp              # Start MCP server

MCP Server

The MCP (Model Context Protocol) server exposes package intelligence tools to AI assistants like Claude, Cursor, and others.

Available Tools

ToolDescription
package_summaryPackage metadata, versions, security advisories, quickstart info
package_vulnerabilitiesSecurity vulnerabilities affecting a package
package_dependenciesDirect and transitive dependency tree
package_qualityQuality metrics and scores
compare_packagesSide-by-side comparison of multiple packages

All tools support both npm and pypi registries.

Configuration

Environment VariableDefaultDescription
PKGSEER_API_URLhttps://pkgseer.dev/api/graphqlAPI endpoint
PKGSEER_API_TOKENAuthentication token (from pkgseer login)

Cursor Integration

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "pkgseer": {
      "command": "npx",
      "args": ["-y", "@pkgseer/cli", "mcp"]
    }
  }
}

Claude Desktop Integration

Add to Claude Desktop config:

{
  "mcpServers": {
    "pkgseer": {
      "command": "npx",
      "args": ["-y", "@pkgseer/cli", "mcp"]
    }
  }
}

Authentication

Authentication is optional but recommended for higher rate limits.

# Opens browser for OAuth login
pkgseer login

# Credentials stored in ~/.pkgseer/

License

MIT © Juha Litola

Keywords

pkgseer

FAQs

Package last updated on 28 Nov 2025

Related posts