Skip to main content
Glama
WYRE-AI

Cork MCP Server

Official
by WYRE-AI

cork_get_software_packages

Find software packages available for installation across WinGet and Chocolatey. Filter by package manager or search by name or publisher to get package IDs for install dispatch.

Instructions

List software packages available to install across supported package managers (WinGet, Chocolatey). Filter by package_manager_key or search (substring match against name/publisher). Returns package_id values that would be used by a future install dispatch - this connector does not implement software install itself.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (1-based). Defaults to 1.
searchNoCase-insensitive substring match against package name and publisher.
page_sizeNoItems per page (max 100). Defaults to 10.
package_manager_keyNoFilter by package manager key.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It does well by clarifying that this is a non-installing, listing-only operation and that returned package_id values are meant for later dispatch. It could add more about pagination or other response traits, but the schema already covers pagination parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and well-structured: it states the core purpose first, then the filtering options, then the critical return-value/installation caveat. Every sentence earns its place with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Although there is no output schema and no annotations, the description explains the key return artifact (package_id) and the tool's boundary (no install). It is largely complete for a simple list-with-filters tool, though it could briefly mention the expected response shape beyond package_id.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents page, search, page_size, and package_manager_key. The description adds modest value by restating search as substring matching and package_manager_key as a filter, but it does not substantially expand beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List', the resource 'software packages', and narrows the scope to supported package managers (WinGet, Chocolatey). It also distinguishes this tool from sibling inventory tools by framing the output as package_id values for future install dispatch.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains the intended use case: listing installable packages and returning IDs for future install dispatch. It also clarifies that the tool does not perform installation itself, which prevents misuse. However, it does not explicitly contrast this with siblings like software vulnerabilities or installer history.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.