osv-advisory-mcp-server
Server Details
Query OSV.dev for package vulnerabilities and batch-audit dependency lists via MCP.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- cyanheads/osv-advisory-mcp-server
- GitHub Stars
- 1
- Server Listing
- osv-advisory-mcp-server
Available Tools
4 toolsosv_get_vulnerabilityOsv Get VulnerabilityARead-onlyIdempotentInspect
Fetch the full advisory record for an OSV vulnerability ID. Returns the complete record: summary, full details text, CVE aliases, all affected packages and version ranges, fix versions, CVSS severity vectors, CWE weakness IDs, and references. Use when osv_query_package or osv_query_batch returns a vuln ID and you need the full advisory context — eligibility criteria, scope of affected packages, or remediation guidance.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | OSV vulnerability ID. Accepts any prefix: "GHSA-" (GitHub), "PYSEC-" (Python), "RUSTSEC-" (Rust), "GO-" (Go), "DSA-"/"DLA-" (Debian), "CVE-" (fallback direct lookups). Example: "GHSA-29mw-wpgm-hmr9". |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | No | OSV vulnerability ID. |
| error | No | Present when the call failed. Absent on success. |
| cweIds | No | CWE weakness classifications (e.g. ["CWE-79"]). Present on GitHub Advisory Database records; empty otherwise. |
| aliases | No | Alternative IDs — usually CVE IDs. Accepted by nvd_get_cve on nist-nvd-mcp-server for CVSS base score, EPSS exploitation probability, and CISA KEV status. |
| details | No | Full advisory text, typically in Markdown. May include proof-of-concept, reproduction steps, or remediation guidance. |
| summary | No | One-line advisory description. |
| affected | No | All affected packages and their version ranges. An advisory may span multiple packages or ecosystems. |
| modified | No | ISO 8601 timestamp of last modification. |
| severity | No | CVSS severity entries. Empty for unscored advisories. |
| published | No | ISO 8601 timestamp when published. |
| withdrawn | No | ISO 8601 timestamp when this advisory was withdrawn. Present ONLY on withdrawn advisories — a withdrawn record has been retracted and must not be treated as an active vulnerability. |
| references | No | Advisory references — NVD links, patches, vendor advisories, PoC reports. |
| schemaVersion | No | OSV schema version this record conforms to (e.g. "1.7.3"). |
| severityLabel | No | Human-readable severity label ("LOW", "MODERATE", "HIGH", "CRITICAL"). Present on GHSA-sourced records; null when not available. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the description does not need to restate those. It adds behavioral context by listing the exact fields returned, which goes beyond the schema's basic parameter documentation. No contradictions with annotations; the description's 'fetch' language aligns with read-only behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste: the first states purpose and return content, the second provides usage guidance. The core action is front-loaded, and every phrase adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter read tool with annotations and an output schema, the description is thorough. It covers what it does, what it returns, when to use it, and the parameter is fully documented in the schema. Nothing an agent needs to call it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%: the single 'id' parameter has a detailed description including allowed prefixes and an example. The tool description adds no extra semantics about the parameter beyond what the schema already provides, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear verb-resource pair: 'Fetch the full advisory record for an OSV vulnerability ID.' It enumerates the specific content returned (summary, details, aliases, affected packages, fix versions, CVSS, CWE, references), leaving no ambiguity about the tool's function. It also distinguishes itself from siblings by focusing on full advisory retrieval, contrasting with query or list operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'Use when osv_query_package or osv_query_batch returns a vuln ID and you need the full advisory context — eligibility criteria, scope of affected packages, or remediation guidance.' This directly names the source tools and the triggering condition, giving clear decision guidance to an agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
osv_list_ecosystemsOsv List EcosystemsARead-onlyIdempotentInspect
Return the list of supported ecosystem identifier strings for use with osv_query_package and osv_query_batch. Ecosystem strings are case-sensitive exact matches — passing "pypi" instead of "PyPI" returns an error from the API. Use this tool to discover valid ecosystem strings before querying, or to verify an ecosystem identifier from a lockfile format. The list is static (maintained from the OSV schema spec) and may occasionally lag newly added ecosystems.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | Advisory note about list currency and canonical source. |
| error | No | Present when the call failed. Absent on success. |
| ecosystems | No | Supported ecosystem identifier strings. These are case-sensitive exact matches required by the ecosystem parameter of osv_query_package and osv_query_batch. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, and the description adds valuable behavioral context beyond that: case-sensitive exact matching (and the error consequence), the static nature of the list, and the potential to lag newly added ecosystems. This goes well beyond the structured hints and prepares the agent for real-world outcomes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences long with zero filler. It front-loads the primary purpose, then adds usage guidance and a critical caveat. Every sentence contributes useful information, and the structure is logical and scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter list tool, the description is complete. It explains what the tool returns, how to use it (including case sensitivity), why it exists (to support query tools), and a timing caveat. The output schema exists (likely listing the ecosystems), so return structure doesn't need explanation. Nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema covers 100% of them (vacuously). Per the rubric, 0 params sets a baseline of 4. The description doesn't need to elaborate on parameters; it provides context about the return values instead, which is appropriate. No additional param semantics are required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: returning the list of supported ecosystem identifier strings. It explicitly names the sibling tools it supports (osv_query_package, osv_query_batch), distinguishing its role as the discovery/validation tool versus the query tools. The verb 'Return' and resource 'list' are specific, leaving no ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit when-to-use guidance: 'Use this tool to discover valid ecosystem strings before querying, or to verify an ecosystem identifier from a lockfile format.' It also gives a concrete behavioral caveat about case-sensitivity and a note on potential lag, helping the agent decide when to rely on this tool. It doesn't explicitly say when not to use, but the alternatives (query tools) are obvious from the sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
osv_query_batchOsv Query BatchARead-onlyIdempotentInspect
Query vulnerabilities for multiple packages in one call — the primary tool for dependency audits, SBOM scanning, and lockfile triage. Pass an array of {name, ecosystem, version} tuples (up to 1000). Each entry in the response corresponds positionally to the input. Each finding includes CVE aliases for chaining to nist-nvd-mcp-server for CVSS scoring.
| Name | Required | Description | Default |
|---|---|---|---|
| packages | Yes | Packages to audit. One entry per dependency. Positional: result[i] corresponds to packages[i]. |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | Present when the call failed. Absent on success. |
| notice | No | Present on all-clean or all-errors batches — the aggregate outcome for content-only clients. |
| results | No | Per-package results, positionally matching the input array. |
| summary | No | Aggregate statistics across the full batch. |
| effectiveQuery | No | Compact scan summary (package and outcome counts), echoed on edge-case batches for content-only clients. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already carry readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds valuable behavior beyond structured data: the positional correspondence between response entries and input tuples, and the batch size ceiling of 1000.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with zero filler. Purpose is front-loaded, then input format, then output/chaining behavior. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
An output schema exists, so return values need not be spelled out. The description covers everything an agent needs to call it: input shape, size limit, positional correspondence, and the CVE-alias chaining path for CVSS scoring.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by restating the tuple shape ({name, ecosystem, version}) and emphasizing the positional output mapping, which helps an agent interpret results. It does not duplicate parameter-level docs verbatim.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb+resource ('Query vulnerabilities for multiple packages in one call') and distinguishes itself as the primary batch tool for dependency audits, SBOM scanning, and lockfile triage. The batch-vs-single distinction against sibling osv_query_package is immediately clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Gives clear usage context (dependency audits, SBOM scanning, lockfile triage) and a downstream chaining hint (to nist-nvd-mcp-server for CVSS scoring). It does not explicitly name osv_query_package as the single-package alternative, though the batch framing implies it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
osv_query_packageOsv Query PackageARead-onlyIdempotentInspect
Query known vulnerabilities for a single package version across any supported ecosystem. Returns all matching OSV advisories with severity (CVSS vectors), CVE aliases, affected version ranges, and first safe version. Use osv_list_ecosystems to validate the ecosystem string before querying — ecosystem strings are case-sensitive exact matches and an invalid value returns an error, not empty results.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Package name as it appears in the ecosystem (e.g. "express", "requests", "serde"). Case-sensitive. | |
| version | Yes | Package version to check (e.g. "4.17.1", "3.1.4", "1.0.0"). Must be an exact version string, not a range. | |
| ecosystem | Yes | Ecosystem identifier. Must be an exact match (case-sensitive). Use osv_list_ecosystems to see valid values. Examples: "npm", "PyPI", "crates.io", "Go", "Maven", "NuGet". |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | Present when the call failed. Absent on success. |
| vulns | No | Vulnerabilities matching this package version. An empty array means no known vulnerabilities ONLY when truncated is false. |
| notice | No | Present on the clean path — confirms no known vulnerabilities for the queried package. |
| queryMeta | No | Query parameters as submitted. |
| truncated | No | True when OSV returned more result pages than the fetch cap could follow — the vulnerability list may be INCOMPLETE. A truncated empty list is NOT a clean result; raise OSV_QUERY_MAX_PAGES or narrow the query. |
| effectiveQuery | No | The package@version (ecosystem) tuple as queried, echoed for content-only clients. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey readOnlyHint and idempotentHint, indicating a safe, repeatable operation. The description adds value by disclosing that an invalid ecosystem returns an error (not empty results) and by outlining the return structure (severity, CVEs, version ranges, first safe version). This exceeds the annotation-only picture without contradicting it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff. The primary purpose and return value are front-loaded, followed by a concise usage tip. Every word earns its place, and the structure is instantly scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-version query tool with three required parameters, a full input schema, and an output schema, the description covers the essential aspects: purpose, return content, error behavior, and a necessary prerequisite. Nothing an agent needs to call it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage with detailed descriptions for each parameter (exact version strings, ecosystem examples, case-sensitivity). The description adds no parameter-specific information beyond what the schema already states. Baseline 3 is appropriate since the schema handles the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb (Query), resource (known vulnerabilities for a single package version), and scope (across any supported ecosystem). It also enumerates the returned data, making it distinct from sibling tools like osv_query_batch (batch query) and osv_get_vulnerability (specific vulnerability lookup). The wording leaves no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit guidance to validate the ecosystem string via osv_list_ecosystems and warns about case-sensitivity and error behavior. However, it does not explicitly contrast with osv_query_batch or osv_get_vulnerability, leaving the agent to infer when to choose this tool over those siblings. Still, the context is clear enough for most use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- Changed
osv_get_vulnerability6 fields changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Input schema / additionalPropertiesAdded value: +false - changed
Output schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Output schema / anyOfAdded value: +[ + { + "not": { + "required": [ + "error" + ] + }, + "required": [ + "id", + "summary", + "details", + "aliases", + "published", + "modified", + "severity", + "severityLabel", + "affected", + "cweIds", + "references", + "schemaVersion" + ] + }, + { + "required": [ + "error" + ] + } +] - added
Output schema / properties / errorAdded value: +{ + "additionalProperties": {}, + "description": "Present when the call failed. Absent on success.", + "properties": { + "code": { + "description": "JSON-RPC error code for this failure.", + "maximum": 9007199254740991, + "minimum": -9007199254740991, + "type": "integer" + }, + "data": { + "additionalProperties": {}, + "properties": { + "reason": { + "description": "Machine-readable failure mode. Declared by this tool: `vulnerability_not_found`: The requested OSV ID does not exist in the database. Other values are possible when a failure originates below the handler.", + "examples": [ + "vulnerability_not_found" + ], + "type": "string" + }, + "recovery": { + "additionalProperties": {}, + "description": "Actionable next step for the caller.", + "properties": { + "hint": { + "type": "string" + } + }, + "required": [ + "hint" + ], + "type": "object" + }, + "retryable": { + "description": "Whether retrying may succeed.", + "type": "boolean" + } + }, + "type": "object" + }, + "message": { + "description": "Human-readable description of what went wrong.", + "type": "string" + } + }, + "required": [ + "code", + "message" + ], + "type": "object" +} - removed
Output schema / requiredRemoved value: -[ - "id", - "summary", - "details", - "aliases", - "published", - "modified", - "severity", - "severityLabel", - "affected", - "cweIds", - "references", - "schemaVersion" -]
- Changed
osv_list_ecosystems6 fields changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Input schema / additionalPropertiesAdded value: +false - changed
Output schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Output schema / anyOfAdded value: +[ + { + "not": { + "required": [ + "error" + ] + }, + "required": [ + "ecosystems", + "note" + ] + }, + { + "required": [ + "error" + ] + } +] - added
Output schema / properties / errorAdded value: +{ + "additionalProperties": {}, + "description": "Present when the call failed. Absent on success.", + "properties": { + "code": { + "description": "JSON-RPC error code for this failure.", + "maximum": 9007199254740991, + "minimum": -9007199254740991, + "type": "integer" + }, + "data": { + "additionalProperties": {}, + "properties": { + "reason": { + "description": "Machine-readable failure mode.", + "type": "string" + }, + "recovery": { + "additionalProperties": {}, + "description": "Actionable next step for the caller.", + "properties": { + "hint": { + "type": "string" + } + }, + "required": [ + "hint" + ], + "type": "object" + }, + "retryable": { + "description": "Whether retrying may succeed.", + "type": "boolean" + } + }, + "type": "object" + }, + "message": { + "description": "Human-readable description of what went wrong.", + "type": "string" + } + }, + "required": [ + "code", + "message" + ], + "type": "object" +} - removed
Output schema / requiredRemoved value: -[ - "ecosystems", - "note" -]
- Changed
osv_query_batch6 fields changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Input schema / additionalPropertiesAdded value: +false - changed
Output schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Output schema / anyOfAdded value: +[ + { + "not": { + "required": [ + "error" + ] + }, + "required": [ + "results", + "summary" + ] + }, + { + "required": [ + "error" + ] + } +] - added
Output schema / properties / errorAdded value: +{ + "additionalProperties": {}, + "description": "Present when the call failed. Absent on success.", + "properties": { + "code": { + "description": "JSON-RPC error code for this failure.", + "maximum": 9007199254740991, + "minimum": -9007199254740991, + "type": "integer" + }, + "data": { + "additionalProperties": {}, + "properties": { + "reason": { + "description": "Machine-readable failure mode.", + "type": "string" + }, + "recovery": { + "additionalProperties": {}, + "description": "Actionable next step for the caller.", + "properties": { + "hint": { + "type": "string" + } + }, + "required": [ + "hint" + ], + "type": "object" + }, + "retryable": { + "description": "Whether retrying may succeed.", + "type": "boolean" + } + }, + "type": "object" + }, + "message": { + "description": "Human-readable description of what went wrong.", + "type": "string" + } + }, + "required": [ + "code", + "message" + ], + "type": "object" +} - removed
Output schema / requiredRemoved value: -[ - "results", - "summary" -]
- Changed
osv_query_package6 fields changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Input schema / additionalPropertiesAdded value: +false - changed
Output schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema" - added
Output schema / anyOfAdded value: +[ + { + "not": { + "required": [ + "error" + ] + }, + "required": [ + "vulns", + "truncated", + "queryMeta" + ] + }, + { + "required": [ + "error" + ] + } +] - added
Output schema / properties / errorAdded value: +{ + "additionalProperties": {}, + "description": "Present when the call failed. Absent on success.", + "properties": { + "code": { + "description": "JSON-RPC error code for this failure.", + "maximum": 9007199254740991, + "minimum": -9007199254740991, + "type": "integer" + }, + "data": { + "additionalProperties": {}, + "properties": { + "reason": { + "description": "Machine-readable failure mode. Declared by this tool: `invalid_ecosystem`: The ecosystem string is not recognized by OSV. Ecosystem names are case-sensitive exact matches. Other values are possible when a failure originates below the handler.", + "examples": [ + "invalid_ecosystem" + ], + "type": "string" + }, + "recovery": { + "additionalProperties": {}, + "description": "Actionable next step for the caller.", + "properties": { + "hint": { + "type": "string" + } + }, + "required": [ + "hint" + ], + "type": "object" + }, + "retryable": { + "description": "Whether retrying may succeed.", + "type": "boolean" + } + }, + "type": "object" + }, + "message": { + "description": "Human-readable description of what went wrong.", + "type": "string" + } + }, + "required": [ + "code", + "message" + ], + "type": "object" +} - removed
Output schema / requiredRemoved value: -[ - "vulns", - "truncated", - "queryMeta" -]
3 tool updates
- Changed
osv_get_vulnerability2 fields changed- added
Input schema / properties / id / minLengthAdded value: +1 - added
Input schema / properties / id / patternAdded value: +"\\S"
- Changed
osv_query_batch6 fields changed- added
Input schema / properties / packages / items / properties / ecosystem / minLengthAdded value: +1 - added
Input schema / properties / packages / items / properties / ecosystem / patternAdded value: +"\\S" - added
Input schema / properties / packages / items / properties / name / minLengthAdded value: +1 - added
Input schema / properties / packages / items / properties / name / patternAdded value: +"\\S" - added
Input schema / properties / packages / items / properties / version / minLengthAdded value: +1 - added
Input schema / properties / packages / items / properties / version / patternAdded value: +"\\S"
- Changed
osv_query_package6 fields changed- added
Input schema / properties / ecosystem / minLengthAdded value: +1 - added
Input schema / properties / ecosystem / patternAdded value: +"\\S" - added
Input schema / properties / name / minLengthAdded value: +1 - added
Input schema / properties / name / patternAdded value: +"\\S" - added
Input schema / properties / version / minLengthAdded value: +1 - added
Input schema / properties / version / patternAdded value: +"\\S"
3 tool updates
- Changed
osv_get_vulnerability9 fields changed- changed
Output schema / properties / affected / items / properties / ecosystem / descriptionPrevious value: -"Affected package ecosystem."New value: +"Affected package ecosystem. Empty for source-only advisories." - changed
Output schema / properties / affected / items / properties / packageName / descriptionPrevious value: -"Affected package name."New value: +"Affected package name. Empty for source-only advisories (GIT ranges with no package identity)." - added
Output schema / properties / affected / items / properties / ranges / items / properties / eventsAdded value: +{ + "description": "Ordered event boundaries defining the affected interval(s) — the loss-free view preserving multiple introduced/fixed pairs the scalar fields collapse.", + "items": { + "additionalProperties": false, + "description": "One ordered range event.", + "properties": { + "type": { + "description": "Event boundary type: \"introduced\", \"fixed\", \"last_affected\", or \"limit\".", + "type": "string" + }, + "value": { + "description": "Version string or commit identifier at this boundary.", + "type": "string" + } + }, + "required": [ + "type", + "value" + ], + "type": "object" + }, + "type": "array" +} - changed
Output schema / properties / affected / items / properties / ranges / items / properties / fixed / descriptionPrevious value: -"First safe version."New value: +"First safe version (convenience view — the last \"fixed\" event; see events[])." - changed
Output schema / properties / affected / items / properties / ranges / items / properties / introduced / descriptionPrevious value: -"First affected version."New value: +"First affected version (convenience view — the last \"introduced\" event; see events[] for full interval order)." - changed
Output schema / properties / affected / items / properties / ranges / items / properties / lastAffected / descriptionPrevious value: -"Last affected version when no fix exists."New value: +"Last affected version when no fix exists (convenience view — see events[])." - added
Output schema / properties / affected / items / properties / ranges / items / properties / repoAdded value: +{ + "description": "Source repository URL for GIT ranges. Absent on version ranges.", + "type": "string" +} - added
Output schema / properties / affected / items / properties / versionsAdded value: +{ + "description": "Explicit affected versions enumerated by the advisory. Absent or empty when affected versions are expressed only as ranges.", + "items": { + "description": "An explicitly-listed affected version.", + "type": "string" + }, + "type": "array" +} - added
Output schema / properties / withdrawnAdded value: +{ + "description": "ISO 8601 timestamp when this advisory was withdrawn. Present ONLY on withdrawn advisories — a withdrawn record has been retracted and must not be treated as an active vulnerability.", + "type": "string" +}
- Changed
osv_query_batch5 fields changed- added
Output schema / properties / results / items / properties / truncatedAdded value: +{ + "description": "True when OSV paginated beyond the fetch cap for this package — its result may be INCOMPLETE. A truncated row with no vulnerabilities is NOT confirmed clean.", + "type": "boolean" +} - changed
Output schema / properties / results / items / requiredPrevious value: -[ - "name", - "ecosystem", - "version", - "vulnerable", - "error", - "vulnCount", - "vulns" -]New value: +[ + "name", + "ecosystem", + "version", + "vulnerable", + "truncated", + "error", + "vulnCount", + "vulns" +] - changed
Output schema / properties / summary / properties / cleanCount / descriptionPrevious value: -"Packages with no vulnerabilities."New value: +"Packages confirmed clean — no vulnerabilities, no error, and not truncated." - added
Output schema / properties / summary / properties / truncatedCountAdded value: +{ + "description": "Packages whose OSV results were truncated (may be incomplete). A truncated package with no findings is NOT counted as clean.", + "type": "number" +} - changed
Output schema / properties / summary / requiredPrevious value: -[ - "totalPackages", - "vulnerableCount", - "cleanCount", - "errorCount", - "totalVulns", - "worstSeverity" -]New value: +[ + "totalPackages", + "vulnerableCount", + "cleanCount", + "truncatedCount", + "errorCount", + "totalVulns", + "worstSeverity" +]
- Changed
osv_query_package11 fields changed- added
Output schema / properties / truncatedAdded value: +{ + "description": "True when OSV returned more result pages than the fetch cap could follow — the vulnerability list may be INCOMPLETE. A truncated empty list is NOT a clean result; raise OSV_QUERY_MAX_PAGES or narrow the query.", + "type": "boolean" +} - changed
Output schema / properties / vulns / descriptionPrevious value: -"Vulnerabilities matching this package version. Empty array means no known vulnerabilities."New value: +"Vulnerabilities matching this package version. An empty array means no known vulnerabilities ONLY when truncated is false." - changed
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / ecosystem / descriptionPrevious value: -"Affected package ecosystem."New value: +"Affected package ecosystem. Empty for source-only advisory ranges." - added
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / eventsAdded value: +{ + "description": "Ordered event boundaries for this range — the loss-free view preserving multiple introduced/fixed pairs the scalar fields collapse.", + "items": { + "additionalProperties": false, + "description": "One ordered range event.", + "properties": { + "type": { + "description": "Event boundary type: \"introduced\", \"fixed\", \"last_affected\", or \"limit\".", + "type": "string" + }, + "value": { + "description": "Version string or commit identifier at this boundary.", + "type": "string" + } + }, + "required": [ + "type", + "value" + ], + "type": "object" + }, + "type": "array" +} - changed
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / fixed / descriptionPrevious value: -"First safe version — the version to upgrade to."New value: +"First safe version — the version to upgrade to (convenience view — see events[])." - changed
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / introduced / descriptionPrevious value: -"First affected version."New value: +"First affected version (convenience view — see events[])." - changed
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / lastAffected / descriptionPrevious value: -"Last affected version. Present when no fix exists."New value: +"Last affected version. Present when no fix exists (convenience view — see events[])." - changed
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / packageName / descriptionPrevious value: -"Affected package name (may differ from queried name for umbrella advisories)."New value: +"Affected package name (may differ from queried name for umbrella advisories). Empty for source-only advisory ranges." - added
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / repoAdded value: +{ + "description": "Source repository URL for GIT ranges. Absent on version ranges.", + "type": "string" +} - added
Output schema / properties / vulns / items / properties / affectedRanges / items / properties / versionsAdded value: +{ + "description": "Explicit affected versions listed on this package entry. Absent or empty when affected versions are expressed only as ranges.", + "items": { + "description": "An explicitly-listed affected version.", + "type": "string" + }, + "type": "array" +} - changed
Output schema / requiredPrevious value: -[ - "vulns", - "queryMeta" -]New value: +[ + "vulns", + "truncated", + "queryMeta" +]
2 tool updates
- Changed
osv_query_batch2 fields changed- added
Output schema / properties / effectiveQueryAdded value: +{ + "description": "Compact scan summary (package and outcome counts), echoed on edge-case batches for content-only clients.", + "type": "string" +} - added
Output schema / properties / noticeAdded value: +{ + "description": "Present on all-clean or all-errors batches — the aggregate outcome for content-only clients.", + "type": "string" +}
- Changed
osv_query_package2 fields changed- added
Output schema / properties / effectiveQueryAdded value: +{ + "description": "The package@version (ecosystem) tuple as queried, echoed for content-only clients.", + "type": "string" +} - added
Output schema / properties / noticeAdded value: +{ + "description": "Present on the clean path — confirms no known vulnerabilities for the queried package.", + "type": "string" +}
1 tool update
- Changed
osv_list_ecosystems1 field changed- changed
Output schema / properties / ecosystems / descriptionPrevious value: -"Supported ecosystem identifier strings. These are case-sensitive exact matches required by the ecosystem parameter of osv_query and osv_query_batch."New value: +"Supported ecosystem identifier strings. These are case-sensitive exact matches required by the ecosystem parameter of osv_query_package and osv_query_batch."
2 tool updates
- Removed
osv_query - Added
osv_query_package
1 tool update
- Changed
osv_query_batch2 fields changed- removed
Input schema / properties / canvas_idRemoved value: -{ - "description": "Reuse an existing DataCanvas table token to append results. Omit to create a new canvas. Only relevant when package count >= 200.", - "type": "string" -} - removed
Output schema / properties / canvas_idRemoved value: -{ - "description": "DataCanvas table token. Present when the package count is >= 200 or a canvas_id was provided. Use to run SQL queries across the full result set via the canvas tools.", - "type": "string" -}
4 tool updates
- First observed
osv_get_vulnerability - First observed
osv_list_ecosystems - First observed
osv_query - First observed
osv_query_batch
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Detect malicious or vulnerable npm packages: registry search, OSV.dev and GitHub advisory lookups
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
31
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceScans Python, Node.js, Java/Spring, and PHP dependency manifests for known vulnerabilities using OSV and GitHub Advisory APIs.-
- AlicenseAqualityBmaintenanceMCP server for querying CVE and package vulnerability data from NVD and OSV.dev, allowing CVE lookups and dependency scanning.41MIT
- AlicenseAqualityBmaintenanceA local MCP server that scans repository dependencies for known vulnerabilities (CVEs) using OSV.dev, enriches findings with NVD and CISA KEV data, and supports triage, remediation, and accepted risk management directly from an AI coding assistant.6351MIT
- AlicenseBqualityDmaintenanceAudits package lockfiles for vulnerabilities, supporting npm, yarn, and pnpm. Runs via CLI or as an MCP server over stdio.11283MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: fetching by ID, listing ecosystems, querying a single package, and batch querying multiple packages. Even though query_package and query_batch both search for vulnerabilities, they differ in input type and use case, with descriptions explicitly stating the intended scenarios.
All tools follow a uniform 'osv_verb_noun' pattern (get_vulnerability, list_ecosystems, query_batch, query_package) with consistent snake_case and no mixing of verb styles. The pattern is immediately predictable and reinforces the distinct actions each tool performs.
At 4 tools, the server is tightly scoped to the OSV advisory domain without unnecessary bloat. Each tool is essential for the core workflows of listing acceptable ecosystems, querying individual and batch packages, and fetching full advisory details.
The tool surface covers the fundamental lifecycle of vulnerability lookup: discover valid ecosystems, query for known vulnerabilities (both single and batch), and retrieve full advisory context. There are no obvious dead ends—an agent can chain queries to get complete remediation information.