npmSearch
Search for NPM packages using a query, with an optional limit on results, to support efficient package discovery and analysis within the NPM Sentinel MCP server.
Instructions
Search for NPM packages with optional limit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return (default: 10) | |
query | Yes | Search query for packages |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of results to return (default: 10)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query for packages",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}