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

Schema Changelog

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

  1. Added

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.2/5.0
Disambiguation5/5

Each tool is cleanly grouped by resource (marketplace, offers, orders, products, questions, reviews, sellers) and within a group every action is distinct. There is no real overlap between e.g. orders.place, orders.checkoutLink, and orders.status, or between offers.make and offers.respond.

Naming Consistency4/5

Tool names follow a predictable resource.action pattern with lowercase verb-like second segments (offers.list, products.create, questions.ask). Minor deviations exist: orders.checkoutLink uses camelCase and sellers.listings is a noun rather than a verb, but the overall convention remains easy to infer.

Tool Count3/5

18 tools sits in the 16-25 borderline-heavy range. The marketplace scope is broad enough that most tools feel justified, but the count is slightly above the ideal well-scoped band and could be seen as heavy for a single API server.

Completeness3/5

The server covers core marketplace browsing, product draft creation, order placement, offers, questions, and reviews well. However, there are notable lifecycle gaps: products can be created but not updated/deleted/activated via API, orders have no dispatch/confirm/receive actions, and offers have no cancel action, with several operations pushed to the web UI.

Resources