@kongyo2/npm-info-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| npm_searchA | Search the npm registry for packages matching a query. Returns a list of packages with name, version, description, keywords, and quality scores. Args:
Returns: List of matching packages with metadata and scores. Each result includes:
Examples:
|
| npm_package_infoA | Get comprehensive information about an npm package including latest version, description, license, homepage, repository, keywords, engines, and maintainers. Args:
Returns: Package metadata including:
Examples:
|
| npm_package_versionsA | List published versions of an npm package with release dates, sorted by most recent first. Args:
Returns: Version list with publish dates, dist-tags, and deprecation notices. Includes:
Examples:
|
| npm_package_dependenciesA | Get dependency information for a specific version of an npm package. By default returns direct dependencies of all kinds (dependencies, devDependencies,
peerDependencies, optionalDependencies) along with totals. When Args:
Returns:
Examples:
|
| npm_package_readmeA | Get the README content of an npm package. Returns the package's README markdown content, which typically includes installation instructions, usage examples, API documentation, and configuration options. Args:
Returns: README content in markdown format. Large READMEs are truncated to 25000 characters with a notice. Examples:
|
| npm_package_typesA | Check whether an npm package ships TypeScript type definitions. Detects bundled types from three sources (in priority order):
Also checks for a DefinitelyTyped (@types/) companion package when no
bundled types are found, and surfaces Args:
Returns markdown with:
Examples:
|
| npm_package_scoreA | Get quality, popularity, and maintenance scores for an npm package from npms.io. Provides detailed metrics including download counts, GitHub stars, test coverage indicators, and release frequency. Args:
Returns: Comprehensive scoring breakdown:
Examples:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct aspect of npm packages: dependencies, metadata, readme, scores, types, versions, and registry search. No two tools overlap in purpose.
Six tools follow the pattern 'npm_package_<action>', but one uses 'npm_search' instead of 'npm_package_search'. This minor inconsistency does not hinder understanding.
Seven tools cover the essential operations for an npm info server without being excessive. The scope is well-defined and each tool serves a clear function.
The tool set provides comprehensive coverage of npm package information: metadata, versions, readme, dependencies, type definitions, quality scores, and registry search. No obvious gaps for the stated purpose.