Skip to main content
Glama

PetSmart MCP Server

A Model Context Protocol (MCP) server for PetSmart pet retail and services, built by Strider Labs.

Overview

This MCP server enables AI assistants to interact with PetSmart's website for product search, shopping, and pet service booking.

Related MCP server: Rover MCP Server

Tools

search_products

Search for pet products including food, toys, and supplies.

Parameters:

  • query (required): Search term

  • category: Product category filter

  • pet_type: Type of pet (dog, cat, fish, bird, reptile, small-animal)

  • min_price: Minimum price in USD

  • max_price: Maximum price in USD

get_product_details

Get detailed product information including description, ingredients, and reviews.

Parameters:

  • product_url (required): Full URL of the product page

add_to_cart

Add items to the shopping cart.

Parameters:

  • product_url (required): Full URL of the product page

  • quantity: Number of items (default: 1)

  • variant: Product variant (size, flavor, color)

checkout

Initiate the checkout process with shipping information.

Parameters:

  • email (required): Customer email

  • shipping_address (required): Shipping address object

schedule_grooming

Book a grooming appointment.

Parameters:

  • pet_name (required): Pet's name

  • pet_type (required): Type of pet

  • breed (required): Pet's breed

  • service_type (required): Grooming service type

  • preferred_date (required): Appointment date (YYYY-MM-DD)

  • zip_code: ZIP code for store lookup

schedule_training

Book a dog training class.

Parameters:

  • class_type (required): Type of training class

  • dog_name (required): Dog's name

  • zip_code: ZIP code for store lookup

find_store

Find nearby PetSmart locations.

Parameters:

  • zip_code: ZIP code

  • city: City name

  • state: State abbreviation

  • services: Filter by available services

Installation

npm install
npm run build

Usage with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "petsmart": {
      "command": "node",
      "args": ["/path/to/mcp-petsmart/dist/index.js"]
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "petsmart": {
      "command": "striderlabs-mcp-petsmart"
    }
  }
}

Requirements

  • Node.js 18+

  • npm or yarn

License

MIT © Strider Labs hello@striderlabs.ai

Available Tools

7 tools
add_to_cartC

Add a product to the PetSmart shopping cart. Optionally specify quantity and product variant (size, flavor, etc.).

ParametersJSON Schema
NameRequiredDescriptionDefault
product_urlYesFull URL of the PetSmart product page
quantityNoNumber of items to add (default: 1)
variantNoProduct variant to select (e.g., size, flavor, color)

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool adds to a cart but doesn't mention whether this requires user authentication, what happens on success/failure, if there are rate limits, or if the cart persists across sessions. This leaves significant gaps for a mutation tool.

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 a single, efficient sentence that front-loads the core purpose and briefly mentions optional parameters. There is zero wasted text, making it appropriately sized for its purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns, error handling, authentication needs, or how it interacts with sibling tools. Given the complexity of e-commerce operations, more context is needed.

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 schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds minimal value by mentioning optional quantity and variant, but doesn't provide additional syntax, format details, or examples beyond what's in the schema.

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 clearly states the action ('Add a product') and resource ('to the PetSmart shopping cart'), making the purpose unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'checkout' or 'get_product_details', which would require a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'checkout' or 'search_products'. It mentions optional parameters but doesn't specify prerequisites, error conditions, or appropriate contexts for invocation.

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

checkoutC

Complete the purchase process for items in the PetSmart shopping cart. Fills in shipping information to initiate checkout.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesCustomer email address
shipping_addressYesShipping address details
paymentNoPayment information (optional - for display purposes only)

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'initiate checkout' but doesn't clarify whether this actually completes the purchase, requires payment, triggers shipping, or has side effects like emptying the cart. For a mutation tool with zero annotation coverage, this leaves critical behavioral aspects unspecified.

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?

Two concise sentences that efficiently state the tool's purpose. The first sentence covers the main action, and the second clarifies the shipping focus. No wasted words, though it could be slightly more front-loaded with behavioral context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what happens after checkout initiation (e.g., order confirmation, errors, cart status), behavioral implications, or success criteria. Given the complexity of a purchase process, this leaves significant gaps for an AI agent.

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?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by mentioning 'shipping information' and 'initiate checkout,' but doesn't provide additional context about parameter usage, constraints, or relationships beyond what's in the schema descriptions.

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 clearly states the tool's purpose: 'Complete the purchase process for items in the PetSmart shopping cart. Fills in shipping information to initiate checkout.' It specifies the verb ('complete'), resource ('purchase process'), and scope ('PetSmart shopping cart'), but doesn't explicitly differentiate from siblings like 'add_to_cart' beyond the checkout vs. cart addition distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. The description implies it's for finalizing purchases after items are in the cart, but doesn't mention prerequisites (e.g., items must be in cart first), exclusions, or comparisons with other tools like 'add_to_cart' or 'find_store' for pickup options.

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

find_storeC

Find nearby PetSmart store locations with information about available services, hours, and contact details.

ParametersJSON Schema
NameRequiredDescriptionDefault
zip_codeNoZIP code to search near
cityNoCity name to search near
stateNoState abbreviation (e.g., 'CA', 'TX')
servicesNoFilter stores by available services (e.g., ['grooming', 'training', 'veterinary', 'boarding'])
radiusNoSearch radius in miles (default: 25)

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool finds store information but does not describe behavioral traits like whether it requires authentication, rate limits, error handling, or the format of returned data. This is a significant gap for a tool with no annotations.

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 a single, efficient sentence that front-loads the core purpose ('Find nearby PetSmart store locations') and adds useful details ('with information about available services, hours, and contact details') without any wasted words. It is appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It does not explain what the return values look like (e.g., list format, error cases) or address behavioral aspects like permissions or limitations, which are crucial for a tool with 5 parameters and no structured output documentation.

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?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by implying filtering by services and location, but does not provide additional syntax or format details. This meets the baseline for high schema coverage.

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 clearly states the tool's purpose: 'Find nearby PetSmart store locations' with specific information about 'available services, hours, and contact details.' It uses a specific verb ('Find') and resource ('PetSmart store locations'), but does not explicitly distinguish it from sibling tools like 'schedule_grooming' or 'schedule_training,' which are related but different actions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, exclusions, or compare it to sibling tools such as 'search_products' or 'add_to_cart,' leaving the agent to infer usage based on context alone.

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

get_product_detailsB

Get detailed information about a specific PetSmart product including full description, ingredients, reviews, variants, and availability.

ParametersJSON Schema
NameRequiredDescriptionDefault
product_urlYesFull URL of the PetSmart product page

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It describes a read operation ('Get') but doesn't disclose behavioral traits like whether it requires authentication, rate limits, error handling, or the format of returned data. The description adds minimal context beyond the basic purpose, leaving gaps in understanding how the tool behaves in practice.

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 a single, efficient sentence that front-loads the purpose and lists key data elements. There's no wasted text, and it's appropriately sized for a simple tool. However, it could be slightly more structured by separating usage context, but it's still highly concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (single parameter, no output schema, no annotations), the description is somewhat complete but has gaps. It covers what the tool does but lacks details on behavioral aspects like data format, errors, or dependencies. Without annotations or output schema, the description should provide more context to fully guide an agent, but it's minimally adequate.

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% description coverage, with the parameter 'product_url' documented as 'Full URL of the PetSmart product page'. The description doesn't add any meaning beyond this, such as URL format examples or validation rules. With high schema coverage, the baseline score is 3, as the schema adequately handles parameter semantics without extra description input.

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 clearly states the verb 'Get' and resource 'detailed information about a specific PetSmart product', listing specific data elements like description, ingredients, reviews, variants, and availability. It distinguishes from siblings like 'search_products' by focusing on a single product rather than searching. However, it doesn't explicitly contrast with all siblings (e.g., 'add_to_cart' is for actions, not retrieval).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when detailed product information is needed for a specific product, as opposed to 'search_products' for broader queries. However, it lacks explicit guidance on when to use this tool versus alternatives like 'add_to_cart' (which might require product details first) or prerequisites such as having a product URL. No exclusions or clear alternatives are stated.

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

schedule_groomingC

Book a grooming appointment for your pet at PetSmart. Services include bath & brush, haircut, nail trim, and full grooming packages.

ParametersJSON Schema
NameRequiredDescriptionDefault
pet_nameYesName of your pet
pet_typeYesType of pet (e.g., 'dog', 'cat')
breedYesBreed of your pet
service_typeYesGrooming service (e.g., 'bath & brush', 'haircut', 'nail trim', 'full groom', 'puppy bath')
preferred_dateYesPreferred appointment date (YYYY-MM-DD format)
preferred_timeNoPreferred appointment time (e.g., 'morning', 'afternoon', '10:00 AM')
store_idNoPetSmart store ID (optional, will use zip_code if not provided)
zip_codeNoZIP code to find nearby stores

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries full burden but only states what the tool does, not behavioral traits like whether it confirms bookings, handles conflicts, requires authentication, or has rate limits. It mentions optional parameters but doesn't explain their impact on behavior.

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?

Two sentences are front-loaded with the core purpose and service examples, with no redundant information. It's efficient, though slightly more detail on behavioral aspects could improve completeness without sacrificing conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 8 parameters, no annotations, and no output schema, the description is adequate but incomplete. It covers the purpose and services, but lacks behavioral context, usage guidelines, and output expectations, leaving gaps for an AI agent.

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?

Schema description coverage is 100%, so the schema fully documents parameters. The description adds minimal value by listing service examples, but doesn't provide additional semantics beyond what's in the schema, such as format details or constraints.

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 clearly states the action ('Book a grooming appointment') and resource ('for your pet at PetSmart'), with specific service examples. It distinguishes from siblings like 'schedule_training' by focusing on grooming, though it doesn't explicitly contrast with other scheduling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives like 'find_store' for location lookup or 'schedule_training' for other services. The description implies usage for grooming appointments but lacks context about prerequisites or exclusions.

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

schedule_trainingB

Book a dog training class at PetSmart. Classes include puppy training, beginner obedience, advanced training, and specialty workshops.

ParametersJSON Schema
NameRequiredDescriptionDefault
class_typeYesType of training class (e.g., 'puppy', 'beginner', 'intermediate', 'advanced', 'agility', 'therapy dog')
dog_nameYesName of the dog
dog_ageNoAge of the dog (e.g., '3 months', '1 year')
breedNoBreed of the dog
preferred_dateNoPreferred start date for the class (YYYY-MM-DD format)
zip_codeNoZIP code to find nearby stores offering training
store_idNoSpecific PetSmart store ID

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It mentions booking a class but doesn't disclose behavioral traits such as whether this is a read-only or mutating operation, authentication requirements, rate limits, confirmation processes, or what happens after booking (e.g., email confirmation). For a booking tool with zero annotation coverage, this is a significant gap.

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 appropriately sized with two sentences: one stating the purpose and one listing class types. It's front-loaded with the core function, and each sentence adds value without waste. However, it could be slightly more structured by explicitly separating purpose from details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (booking tool with 7 parameters, no annotations, no output schema), the description is incomplete. It covers the purpose and class types but lacks behavioral context (e.g., mutation effects, response format) and doesn't leverage sibling tools for guidance. It's adequate as a minimum but has clear gaps for effective agent use.

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?

Schema description coverage is 100%, so the schema already documents all 7 parameters with clear descriptions. The description adds minimal value beyond the schema by listing example class types, but it doesn't provide additional syntax, format details, or constraints. Baseline 3 is appropriate when the schema does the heavy lifting.

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 clearly states the tool's purpose: 'Book a dog training class at PetSmart.' It specifies the verb ('Book') and resource ('dog training class'), and distinguishes it from siblings like 'schedule_grooming' by focusing on training. However, it doesn't explicitly differentiate from other booking tools (none listed), so it's not a perfect 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by listing class types ('puppy training, beginner obedience, advanced training, and specialty workshops'), suggesting when to use it based on training needs. However, it doesn't provide explicit guidance on when to use this versus alternatives like 'schedule_grooming' or prerequisites (e.g., dog age requirements), leaving some ambiguity.

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

search_productsA

Search for pet products on PetSmart including food, toys, supplies, and accessories. Returns a list of matching products with prices, ratings, and URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query for pet products (e.g., 'dog food', 'cat toys', 'fish tank')
categoryNoProduct category filter (e.g., 'food', 'toys', 'beds', 'aquariums')
pet_typeNoType of pet (e.g., 'dog', 'cat', 'fish', 'bird', 'reptile', 'small-animal')
min_priceNoMinimum price filter in USD
max_priceNoMaximum price filter in USD
pageNoPage number for pagination (default: 1)

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses that it 'returns a list of matching products with prices, ratings, and URLs', which is useful behavioral context. However, it lacks details on rate limits, authentication needs, pagination behavior beyond the 'page' parameter, or error conditions.

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 concise sentences with zero waste. The first sentence establishes purpose and scope, the second explains the return format. Every word earns its place, and it's front-loaded with essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with 6 parameters, 100% schema coverage, and no output schema, the description provides adequate purpose and return format. However, it lacks behavioral details like pagination handling, error scenarios, or performance characteristics that would be helpful given 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?

Schema description coverage is 100%, so the schema already documents all 6 parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema, maintaining the baseline score of 3 for high schema coverage.

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 'search' and resource 'pet products on PetSmart', specifying the scope with examples like 'food, toys, supplies, and accessories'. It distinguishes from siblings like 'get_product_details' by focusing on search functionality rather than detailed product information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for searching pet products, but does not explicitly state when to use this tool versus alternatives like 'get_product_details' for specific product info or 'find_store' for physical locations. No guidance on prerequisites or exclusions is provided.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updatesv1.0.0
    • First observedadd_to_cart
    • First observedcheckout
    • First observedfind_store
    • First observedget_product_details
    • First observedschedule_grooming
    • First observedschedule_training
    • First observedsearch_products

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose targeting different aspects of the PetSmart experience: shopping cart operations, checkout, store location, product details, grooming appointments, training classes, and product search. There is no overlap or ambiguity between these functions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., add_to_cart, find_store, get_product_details, schedule_grooming). The naming is uniform and predictable across all seven tools, making them easy to distinguish and use.

Tool Count5/5

With 7 tools, the server is well-scoped for its purpose, covering key PetSmart operations like shopping, services, and store information. Each tool serves a unique and necessary function, avoiding bloat while providing comprehensive coverage.

Completeness4/5

The tool set covers major PetSmart domains: product search and details, shopping cart and checkout, store location, and service appointments (grooming and training). A minor gap is the lack of tools for managing the cart (e.g., remove or update items) or handling post-purchase actions like order tracking, but core workflows are well-supported.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/markswendsen-code/mcp-petsmart'

If you have feedback or need assistance with the MCP directory API, please join our Discord server