Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

rover_sitter_profile

Fetch and normalize a Rover sitter's public profile: ratings, reviews, experience, location, pricing, services, and more. Input the sitter's profile slug to receive structured JSON.

Instructions

Get Rover sitter profile. Returns a normalized Rover sitter/walker profile: name, photo, bio, star rating, review count, repeat-client count, years of experience, neighborhood/city/state, starting price, Star Sitter status, the services offered with per-service pricing, and public review excerpts from the sitter's own profile page. Public data sourced from Rover's own server-rendered profile pages.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesRover sitter profile slug, the trailing path segment of a search result's profile_url field

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It states 'Public data sourced from Rover's own server-rendered profile pages', indicating no authentication is needed and it's a read operation. It also mentions the output is 'normalized', which is a behavioral detail. It does not disclose potential errors or rate limits, but for a simple get operation, this is reasonably transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences. The first sentence is front-loaded with the verb and resource, then lists the returned fields. The second sentence adds provenance. It is relatively concise, though the list of fields is lengthy. It could be structured as bullet points for readability, but it's not overly verbose.

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 tool with a single parameter and no output schema, the description is fairly complete. It enumerates the returned data fields, so an agent knows what to expect. It lacks explicit handling of error cases or edge conditions, but given the simplicity, it's adequate. Sibling tools like rover_sitter_search provide context for how to obtain the slug.

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 covers the single parameter 'slug' with a description: 'Rover sitter profile slug, the trailing path segment of a search result's profile_url field'. The tool description does not add any additional meaning about this parameter; it only repeats the context. Since schema coverage is 100%, the baseline is 3, and no extra value is added.

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 tool's purpose: 'Get Rover sitter profile' and enumerates the specific fields returned (name, photo, bio, star rating, etc.). It distinguishes itself from sibling tools like rover_sitter_search (which finds profiles) and rover_trainer_profile (which handles trainers) by focusing on a single sitter's profile.

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 implies when to use this tool: when you need a specific sitter's profile, given a slug. It does not explicitly name alternatives or state when not to use it, but the context of having a slug from a search result (as mentioned in the schema) makes usage clear. A more explicit mention of rover_sitter_search for finding profiles would improve it.

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

Install Server

Other Tools