Skip to main content
Glama

Get a Resollo seller's public profile

sellers.get
Read-only

Returns a seller's public profile -- the same information the web /user/ profile page shows: display name, avatar URL, about text, identity-verification badge, location (country/region/city), when they joined, accepted payment/shipment methods, whether they have a fully active Stripe Connect account, their number of currently active listings, completed-sale count, follower count, and their positive-feedback rating (0-5, null if they have no feedback yet). Useful for judging seller reputation before advising a buyer, or to get the shop_url for browsing everything they sell (pass the same seller id as search's seller_id filter). Read-only, no authentication required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sellerIdYesThe seller's uuid -- the seller.id from any search or getProduct result.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
cityYes
nameYes
aboutYes
ratingYes
shop_urlYes
avatar_urlYes
sold_countYes
is_verifiedYes
profile_urlYes
region_codeYes
country_codeYes
member_sinceYes
feedback_countYes
follower_countYes
active_listing_countYes
stripe_connect_activeYes
accepted_payment_methodsYes
accepted_shipment_methodsYes

TDQS

A4.4/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description explicitly states 'Read-only, no authentication required' and details exactly what data is returned, including edge cases like null feedback rating. It also explains how the seller id relates to search, adding practical behavioral context.

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 front-loaded with the core action and then provides a dense, useful enumeration of return fields and use cases. Every sentence adds meaningful information for tool selection or invocation, with 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?

With a single well-documented parameter, an output schema present, and annotations covering read-only behavior, the description fully covers what an agent needs: purpose, return contents, use cases, authentication requirements, and parameter sourcing.

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

Parameters4/5

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

The input schema already fully documents sellerId and where it comes from (search or getProduct result). The description adds further value by noting the same seller id can be passed as search's seller_id filter and by tying the parameter to the shop_url use case.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource ('Returns a seller's public profile') and enumerates the exact fields returned, making the tool's purpose unmistakable. It does not explicitly distinguish itself from sibling tools like sellers.status, but the public-profile framing and field list make the boundary reasonably clear.

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 gives clear use cases: judging seller reputation before advising a buyer and obtaining shop_url for browsing a seller's items. It does not explicitly state when not to use this tool or name alternatives, but the context is concrete enough for an agent to select it appropriately.

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

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action (marketplace metadata, offers, orders, products, questions, reviews, sellers), so an agent can reliably select the right one. The few same-domain tools (products.get/search, sellers.get/status) are clearly separated by their descriptions.

Naming Consistency4/5

Names mostly follow a clear domain.action pattern (products.create, questions.ask, orders.place), with domain prefixes making the surface predictable. Minor deviations like orders.checkoutLink (camelCase) and noun-style endpoints (marketplace.info, orders.status, sellers.status) keep it from being fully uniform.

Tool Count5/5

Fifteen tools is a well-scoped size for a marketplace API; each tool supports a distinct part of browsing, buying, selling, or marketplace reference data. No obvious redundant tools or bloated surface.

Completeness3/5

The tool set covers a wide marketplace workflow, but there are notable gaps: no endpoint to list the authenticated user's own orders, offers, or listings, and no product update/delete/activate after draft creation. Agents can work around some gaps via returned IDs and manual web steps, but certain user requests will dead-end.

Resources