Skip to main content
Glama
dhevenb

Spec3 MCP Server

by dhevenb

get_car_context

Retrieve configuration, build status, and modification details for a 1994 BMW E36 325is Spec3 race car to support personalized advice, troubleshooting, or modification planning.

Instructions

Get information about the user's 1994 BMW E36 325is Spec3 race car build.

Returns current configuration, build status, modifications, and car-specific details. Call this tool when providing personalized advice, troubleshooting, or planning modifications.

Returns: dict: Car configuration, history, and current state

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function decorated with @mcp.tool(), including docstring schema, logging, and return of car context data.
    @mcp.tool() async def get_car_context() -> dict[str, Any]: """ Get information about the user's 1994 BMW E36 325is Spec3 race car build. Returns current configuration, build status, modifications, and car-specific details. Call this tool when providing personalized advice, troubleshooting, or planning modifications. Returns: dict: Car configuration, history, and current state """ logger.info("get_car_context called") return { "context": CAR_CONTEXT, "last_updated": "2025-10-05" }
  • Constant string containing the car-specific context data referenced and returned by the get_car_context tool.
    CAR_CONTEXT = """ # My Spec3 E36 Build ## Vehicle Information - Year/Model: 1994 BMW E36 325is - Build Status: [In-progress] """
  • Docstring providing the tool description and return type schema used by FastMCP for tool registration.
    """ Get information about the user's 1994 BMW E36 325is Spec3 race car build. Returns current configuration, build status, modifications, and car-specific details. Call this tool when providing personalized advice, troubleshooting, or planning modifications. Returns: dict: Car configuration, history, and current state """
  • @mcp.tool() decorator that registers the get_car_context function as an MCP tool.
    @mcp.tool()

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/dhevenb/dheven-spec3-mcp-server'

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