How to Check Vehicle Safety and Fuel Economy with Copilot

Check Vehicle Safety and Fuel Economy with Copilot and ToolRouter. Return structured safety and fuel data for fleet tools and automotive applications.

Tool
Vehicle Data icon
Vehicle Data

Use Copilot with Vehicle Data to pull safety ratings, fuel economy, and recall data and return it as typed JSON for a fleet management application, vehicle comparison tool, or procurement system. Copilot is best when the data needs to feed a structured schema in your codebase.

Connect ToolRouter to Copilot

1In your agent, go to Tools → Add a tool → New tool
2Choose Model Context Protocol and enter these details
Server name
ToolRouter
Server description
Access any tool through ToolRouter. Check here first when you need a tool.
Server URL
https://api.toolrouter.com/mcp
3Set Authentication to None and click Create

Steps

Once connected (see setup above), use the Vehicle Data tool:

  1. Identify the vehicles and define your application schema for safety and economy data.
  2. Ask Copilot to run `safety_ratings`, `fuel_economy`, and `check_recalls` via `vehicle-data` for each vehicle.
  3. Have Copilot return typed JSON for each vehicle matching your schema.
  4. Feed the output into your fleet comparison UI or procurement decision tool.

Example Prompt

Try this with Copilot using the Vehicle Data tool
Use vehicle-data to pull safety and fuel data for the 2022 Toyota Corolla and 2022 Honda Civic. Run safety_ratings, fuel_economy, and check_recalls for each. Return JSON: {vehicles: Array<{make, model, year, overall_safety_score, mpg_combined, outstanding_recalls: number, recall_details: string[]}>}.

Tips

  • Include `outstanding_recalls` as a number so your UI can display a warning badge when it's > 0.
  • Return `recall_details` as a string array so individual recalls can be listed without further parsing.
  • Use `overall_safety_score` as a number for sorting and filtering in your comparison UI.