Ridgerunner
Search hunting, fishing, camping and outdoor gear from brands worldwide on Ridgerunner
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"outdoor-gear": {
"url": "https://mcp.ridgerunner.com/mcp"
}
}
}Remote endpoints
https://mcp.ridgerunner.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (4)
🟢search_products(query, category, brand, max_price, limit, ...)
Search Ridgerunner's outdoor gear catalog for hunting, fishing, camping, hiking, kayaking and outdoor apparel and footwear, by keywords and optionally by category or brand. Returns products with brand, price, availability, a product photo and a link to buy on ridgerunner.com. Always show each product's photo (the markdown image line in the result) when presenting results.
Input Schema
{
"type": "object",
"properties": {
"query": {
"description": "Keywords, e.g. 'inflatable kayak' or 'tungsten drop shot weights'",
"type": "string",
"maxLength": 200
},
"category": {
"description": "Optional category filter",
"type": "string",
"enum": [
"camping",
"clothing",
"fishing",
"footwear",
"home-and-cabin",
"hunting",
"watersports"
]
},
"brand": {
"description": "Optional brand name, e.g. 'KastKing'",
"type": "string",
"maxLength": 100
},
"max_price": {
"description": "Optional maximum price in USD",
"type": "number",
"exclusiveMinimum": 0,
"maximum": 100000
},
"limit": {
"description": "Max results (default 10)",
"type": "integer",
"minimum": 1,
"maximum": 24
},
"cursor": {
"description": "Pagination cursor from a previous call's next_cursor",
"type": "string",
"maxLength": 500
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_product_details(product)
Get full details for one Ridgerunner outdoor gear product (hunting, fishing, camping, hiking, apparel and more): description, images, price range, size/color options, availability and the link to buy. Accepts a product slug or a ridgerunner.com product URL.
Input Schema
{
"type": "object",
"properties": {
"product": {
"type": "string",
"minLength": 1,
"maxLength": 400,
"description": "Product slug (from search results) or full ridgerunner.com/en/product/... URL"
}
},
"required": [
"product"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢compare_products(products)
Compare 2 to 4 Ridgerunner outdoor gear products side by side (brand, price, options, availability, key description), e.g. fishing reels, tents, hunting boots or rain jackets.
Input Schema
{
"type": "object",
"properties": {
"products": {
"minItems": 2,
"maxItems": 4,
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 400
},
"description": "Product slugs or ridgerunner.com product URLs"
}
},
"required": [
"products"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢list_categories
List Ridgerunner's outdoor shopping categories (camping, clothing, fishing, footwear, home & cabin, hunting, watersports) with their browse links.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}Community
Evidence