Skip to content

tonyfruzza/mcp-summit-racing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Summit Racing FastMCP Server

This is a Model Context Protocol (MCP) server that provides search functionality for Summit Racing's automotive parts catalog. It allows you to search for products and get detailed information including SKUs, descriptions, and links.

Features

  • Search Tools: Search Summit Racing with various parameters
  • Product Details: Get specific product information by SKU
  • Resource Access: Access search results through URI resources
  • JSON Response: All responses are in structured JSON format

Installation

  1. Install the required dependencies:
pip install -r requirements.txt
  1. Make sure you have Python 3.8+ installed.

Usage

Running the Server

To start the MCP server with Server-Sent Events (SSE) transport:

python summit_racing_mcp.py

The server will start and listen for MCP connections.

Available Tools

search_summit_racing

Comprehensive search with all options:

  • search_term (required): What to search for
  • limit (optional): Maximum number of results
  • sort_by (optional): Sort method (BestKeywordMatch, PriceLowToHigh, PriceHighToLow, PartNumber, BrandName)

search_summit_racing_simple

Simple search with just the search term:

  • search_term (required): What to search for

get_product_details

Get details for a specific product:

  • sku (required): The product SKU/part number

Available Resources

You can access search results as resources using:

  • summit-racing://search/{search_term} - Get search results for any term

Response Format

All tools return JSON responses with this structure:

{
  "search_info": {
    "search_term": "deburring tool",
    "sort_by": "BestKeywordMatch",
    "limit": null,
    "total_products": 15
  },
  "products": [
    {
      "sku": "NOR-07530",
      "name": "NorCal Speed Deburring Tool",
      "link": "/parts/nor-07530",
      "description": "Professional deburring tool for automotive applications..."
    }
  ]
}

About

mcp server for searching summit racing products

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages