# get_contributor_profile

Get a contributor's public profile and their published listings, by contributor slug (not a listing slug). Read-only, no authentication required (public endpoint, IP rate-limited). Returns display_name, bio, credential_summary, positioning_statement, badge_tier, avg_rating, review_count, pull_quote, social/website URLs, credential_badges, published_listing_count, and a listings array (slug, title, price_cents) for that contributor. Use to learn more about who built a listing returned by search or fetch -- not for looking up a listing directly.

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

## Facts

- Tool: `get_contributor_profile`
- 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 contributor's slug (distinct from a listing slug) -- typically found in the contributor field of a search or fetch result. |

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": "get_contributor_profile",
    "arguments": {
      "slug": "<slug>"
    }
  }
}
```

## Why get_contributor_profile is rated Low

This tool retrieves public profile information about marketplace contributors without modifying any data. The read-only nature, lack of authentication requirement, and public endpoint designation confirm it has no side effects. The rate-limiting provides standard abuse protection.

From the tool's own definition: "Tool description explicitly states 'Read-only, no authentication required (public endpoint, IP rate-limited)' and returns only profile metadata and published listing summaries without side effects."

## Use case

AI agents call get_contributor_profile 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": {
    "get_contributor_profile": {}
  }
}
```

## Other tools on Marketplace (4)

- `fetch` — Read — https://policylayer.com/tools/com-gallandigital-marketplace/fetch.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
