Skip to main content
Glama

create_web_packages

Start asynchronous upload of web packages from provided URLs and titles. Returns processing state; verify readiness via polling before confirming success.

Instructions

Upload web packages from URLs. ASYNCHRONOUS - this only starts the job.

    `web_packages` is the batch: each item needs `content_url` (an https:// URL of
    the archive) and a `title` of 1 to 500 characters.

    SUCCESS HERE DOES NOT MEAN THE PACKAGE WORKS. Skilljar fetches and re-hosts the
    archive in a background worker. Rows come back in state PROCESSING, and a
    malformed or unreachable archive surfaces later as state ERROR on the package -
    never as a failure on this call. Poll `get_web_package` until `state` is READY
    or ERROR before telling anyone the upload worked.

    The URL is only checked for syntax here. Whether it resolves, and whether what
    it serves is a valid archive, is decided at fetch time.

    THERE IS NO DEDUPLICATION. Sending the same `content_url` twice creates two
    separate packages, because that is a legitimate thing to want. Every other
    create tool in this server dedups; this one does not.

    Each accepted item queues a real outbound download, so one request becomes real
    egress. This endpoint is rate limited more tightly than an ordinary batch write.
    Submit in small batches.

    Requires the `web-packages:write` OAuth scope.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
web_packagesYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYes
noteYes
totalYes
failedYes
succeededYes
Install Server

TDQS

A4.8/5.0
Behavior5/5

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

The description goes far beyond the annotations. It discloses that success only means the job started, that background workers fetch and re-host archives, that states can become PROCESSING or ERROR later, that there is no deduplication, and that each item triggers real egress with tighter rate limits. It also states the required OAuth scope. This aligns with readOnlyHint=false and idempotentHint=false.

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 long but dense: every sentence adds a distinct, important behavior or constraint. Key warnings are front-loaded (async, success semantics, no dedup), and the structure moves from action to workflow to cautions to auth. There is no filler.

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

Completeness5/5

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

For a complex asynchronous batch operation, the description covers the workflow, failure modes, polling guidance, no-dedup behavior, rate limiting, and authentication requirements. The output schema exists, so return-value details are not required. Nothing material for correct invocation is missing.

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

Parameters5/5

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

With 0% schema description coverage, the description fully compensates by explaining the item structure: each entry needs content_url as an https:// archive URL and a title of 1 to 500 characters. This is essential call-shaping information that the schema alone does not provide.

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 opens with a specific action and resource: 'Upload web packages from URLs.' It immediately distinguishes itself from sibling create tools by naming the resource type, and it clarifies the asynchronous nature of the operation. This 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.

Usage Guidelines4/5

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

The description provides strong usage context: it tells the agent to poll get_web_package until READY or ERROR, to submit in small batches, and warns about rate limits. It does not explicitly enumerate alternatives or say 'use this instead of X', but the web-packages resource is unique among siblings, so the absence is minor.

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

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CloudSecurityAlliance/csa-skilljar'

If you have feedback or need assistance with the MCP directory API, please join our Discord server