# fetch

Get full detail on one published listing by its listing slug (not a contributor slug). Read-only, no authentication required (public endpoint, IP rate-limited). Returns title, description, short_description, product_story, included_components, use_cases, industry_focus, complexity_level, listing_type, product_formats, thumbnail_url, an array of pricing tiers (name, price_cents, setup_fee_cents, description, billing_interval, features), a contributor object (slug, display_name, badge_tier, bio, credential_summary, credential_badges), and a category object (name, slug). Use after search or list_categories to drill into a specific result.

Agent View of the PolicyLayer registry record for `fetch`. HTML page: https://policylayer.com/tools/com-gallandigital-marketplace/fetch

## Facts

- Tool: `fetch`
- Server: Marketplace (`https://gallandigital.com/api/mcp`) — https://policylayer.com/tools/com-gallandigital-marketplace.md
- Homepage: https://github.com/ZWingett/gallandigital-marketplace
- Risk category: Read (Low risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server rate-limited: no
- Parameters: 1 (1 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `slug` | string | yes | The listing's slug, as returned by search (the listing-level slug, not a contributor slug). |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "fetch",
    "arguments": {
      "slug": "<slug>"
    }
  }
}
```

## Why fetch is rated Low

This is a straightforward data retrieval operation with no side effects. It queries and returns public marketplace listing information without modifying, executing, or deleting any data. The read-only designation and public endpoint access confirm no mutation or execution risk.

From the tool's own definition: "Tool description explicitly states 'Read-only, no authentication required (public endpoint, IP rate-limited)'. Function retrieves full details of published marketplace listings by slug."

## Use case

AI agents call fetch to retrieve information from Marketplace without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Marketplace:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "fetch": {}
  }
}
```

## Other tools on Marketplace (4)

- `get_contributor_profile` — Read — https://policylayer.com/tools/com-gallandigital-marketplace/get-contributor-profile.md
- `get_deployment_guidance` — Read — https://policylayer.com/tools/com-gallandigital-marketplace/get-deployment-guidance.md
- `list_categories` — Read — https://policylayer.com/tools/com-gallandigital-marketplace/list-categories.md
- `search` — Read — https://policylayer.com/tools/com-gallandigital-marketplace/search.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-gallandigital-marketplace · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-gallandigital-marketplace
