Skip to main content
Glama

List a campaign's profiles

list_campaign_profiles
Read-only

Convenience: list fundraising profiles for a specific campaign. Raisely API: GET /campaigns/{campaign}/profiles. Returns { data:[...], pagination }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax records to return (Raisely `limit`, default 20).
offsetNoRecords to skip for pagination (Raisely `offset`, default 0).
paramsNoAdditional documented query-string filters to send verbatim (e.g. campaign, status, sort, order, private) — merged with the typed limit/offset above.
campaignYesThe campaign uuid or URL path/slug.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so safety is covered. The description adds the return shape ({ data:[...], pagination }) and the specific GET endpoint, which is useful context beyond annotations, but it does not discuss default ordering, error behavior, or edge cases. This mirrors the TDQS high example where additional context earns a 3.

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 two sentences and zero waste. It front-loads the core purpose ('Convenience: list fundraising profiles for a specific campaign'), then provides the API endpoint and return shape. Every word earns its place.

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 read-only list tool with detailed schema, the description provides the essential context: purpose, endpoint, and return shape. It does not explain when to use this over other list tools or pagination behavior, but the schema covers pagination details. Overall, it is nearly complete for the tool's complexity.

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?

The input schema has 100% coverage with all parameters described, including limits, offset, campaign, and the flexible params object. The description itself does not add parameter-level details, but since the schema carries the burden, the baseline of 3 is appropriate.

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 'fundraising profiles', and the scope 'for a specific campaign', which distinguishes it from the sibling tool list_profiles. It also names the direct API endpoint, removing any ambiguity about its function.

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 word 'Convenience' indicates this is a specialized variant of listing profiles, and the phrase 'for a specific campaign' makes the intended use case clear. It does not explicitly mention alternatives like list_profiles, but the sibling list and the scoped wording imply when to use this tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool is clearly scoped to a specific resource and action. The get_/list_/create_/update_ prefixes distinguish reads from mutations, and the convenience listers are explicitly labeled, so there is no real overlap or confusion.

Naming Consistency4/5

Tool names largely follow a consistent verb_noun pattern (create_, get_, list_, update_). The only outlier is raisely_request, which is a generic escape hatch but breaks the pattern slightly.

Tool Count3/5

With 23 tools, the server is on the heavy side. While each tool maps to a distinct API endpoint, several convenience wrappers (list_campaign_donations, list_user_donations) add redundancy without significantly expanding functionality.

Completeness2/5

The tool surface is heavily read-oriented. Many core resources like campaigns, subscriptions, posts, and orders lack create/update/delete operations, and the read-only raisely_request cannot fill these gaps, leaving agents unable to perform common management tasks.