Skip to main content
Glama

get_program_scope

Retrieve a program's complete in-scope and out-of-scope asset list, including headers and rate limits, to clarify your bug bounty testing boundaries.

Instructions

Fetch the full in-scope/out-of-scope asset list and metadata (headers, rate limits) for a single program.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
programIdYesThe Intigriti program ID or handle

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses that the operation is a readonly fetch and specifies the returned content (asset list, headers, rate limits), but it does not mention authentication requirements, error behavior, or data freshness. These gaps keep it at a minimum-viable level.

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?

One sentence, no filler, and the most important information is front-loaded. Every part of the description contributes to understanding what the tool does.

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?

For a simple one-parameter read tool with no output schema, the description explains what will be returned: the asset list and metadata including headers and rate limits. It does not cover edge cases like invalid program IDs or empty scopes, but it provides enough for an agent to invoke correctly.

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 fully documents programId. The description adds no additional meaning beyond the schema, which meets the baseline of 3 but does not exceed it.

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 uses a specific verb ('Fetch') and names the exact resource: the full in-scope/out-of-scope asset list plus metadata. It also scopes the operation to a single program, which clearly distinguishes it from list_programs and the other siblings.

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 conveys clear context: use this when you need scoped assets for one particular program, not a list of programs. It does not explicitly name alternatives or state when not to use it, so it stops short of a 5.

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