PetSmart MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PetSmart MCP ServerFind grain-free dog food and schedule grooming for Max in 90210"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 termcategory: Product category filterpet_type: Type of pet (dog, cat, fish, bird, reptile, small-animal)min_price: Minimum price in USDmax_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 pagequantity: Number of items (default: 1)variant: Product variant (size, flavor, color)
checkout
Initiate the checkout process with shipping information.
Parameters:
email(required): Customer emailshipping_address(required): Shipping address object
schedule_grooming
Book a grooming appointment.
Parameters:
pet_name(required): Pet's namepet_type(required): Type of petbreed(required): Pet's breedservice_type(required): Grooming service typepreferred_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 classdog_name(required): Dog's namezip_code: ZIP code for store lookup
find_store
Find nearby PetSmart locations.
Parameters:
zip_code: ZIP codecity: City namestate: State abbreviationservices: Filter by available services
Installation
npm install
npm run buildUsage 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 toolsadd_to_cartC
Add a product to the PetSmart shopping cart. Optionally specify quantity and product variant (size, flavor, etc.).
| Name | Required | Description | Default |
|---|---|---|---|
| product_url | Yes | Full URL of the PetSmart product page | |
| quantity | No | Number of items to add (default: 1) | |
| variant | No | Product variant to select (e.g., size, flavor, color) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Customer email address | ||
| shipping_address | Yes | Shipping address details | |
| payment | No | Payment information (optional - for display purposes only) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| zip_code | No | ZIP code to search near | |
| city | No | City name to search near | |
| state | No | State abbreviation (e.g., 'CA', 'TX') | |
| services | No | Filter stores by available services (e.g., ['grooming', 'training', 'veterinary', 'boarding']) | |
| radius | No | Search radius in miles (default: 25) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| product_url | Yes | Full URL of the PetSmart product page |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| pet_name | Yes | Name of your pet | |
| pet_type | Yes | Type of pet (e.g., 'dog', 'cat') | |
| breed | Yes | Breed of your pet | |
| service_type | Yes | Grooming service (e.g., 'bath & brush', 'haircut', 'nail trim', 'full groom', 'puppy bath') | |
| preferred_date | Yes | Preferred appointment date (YYYY-MM-DD format) | |
| preferred_time | No | Preferred appointment time (e.g., 'morning', 'afternoon', '10:00 AM') | |
| store_id | No | PetSmart store ID (optional, will use zip_code if not provided) | |
| zip_code | No | ZIP code to find nearby stores |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| class_type | Yes | Type of training class (e.g., 'puppy', 'beginner', 'intermediate', 'advanced', 'agility', 'therapy dog') | |
| dog_name | Yes | Name of the dog | |
| dog_age | No | Age of the dog (e.g., '3 months', '1 year') | |
| breed | No | Breed of the dog | |
| preferred_date | No | Preferred start date for the class (YYYY-MM-DD format) | |
| zip_code | No | ZIP code to find nearby stores offering training | |
| store_id | No | Specific PetSmart store ID |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for pet products (e.g., 'dog food', 'cat toys', 'fish tank') | |
| category | No | Product category filter (e.g., 'food', 'toys', 'beds', 'aquariums') | |
| pet_type | No | Type of pet (e.g., 'dog', 'cat', 'fish', 'bird', 'reptile', 'small-animal') | |
| min_price | No | Minimum price filter in USD | |
| max_price | No | Maximum price filter in USD | |
| page | No | Page number for pagination (default: 1) |
TDQS
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.
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.
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.
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.
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.
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.
7 tool updates
v1.0.0- First observed
add_to_cart - First observed
checkout - First observed
find_store - First observed
get_product_details - First observed
schedule_grooming - First observed
schedule_training - First observed
search_products
TDQS
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.
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.
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.
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
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
AI shopping gateway for product search, inventory, carts, and merchant-hosted checkout.
AI-agent product catalog: search, lookup & purchase routing over verified merchant data.
AI-powered product search, affiliate links, and price negotiation for e-commerce platforms
Manage your NanoCart store from any AI agent: products, orders, coupons, subscribers, reports.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to search products, manage shopping carts, place orders, and retrieve order history from Amazon and Target accounts.2MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to search for pet sitters, manage bookings, and handle pet profiles through the Rover pet services marketplace. It facilitates direct communication with sitters and service management using Playwright-based browser automation.13181MIT
- AlicenseAqualityDmaintenanceEnables AI agents to manage H-E-B grocery shopping tasks including product search, cart management, and coupon clipping through natural language.82555MIT
- FlicenseAqualityCmaintenanceEnables AI agents to search FSA-eligible products on fsastore.com, add them to cart, and place orders only after user confirmation.7-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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