{
  "name": "Carposé MCP Server",
  "version": "1.0.0",
  "description": "Model Context Protocol server for Carposé data",
  "endpoints": {
    "GET /health": "Health check",
    "GET /tools": "List available tools",
    "POST /tools/:toolName": "Execute a specific tool"
  },
  "authentication": {
    "description": "All requests require X-CARPOSE-API-KEY header",
    "header": "X-CARPOSE-API-KEY: your_carpose_api_key_here"
  },
  "resources": "17 resources with 35 tools: Employee, Team, Manufacturer, Model, Vehicle, Store, FuelType, EngineType, VehicleType, DriveType, InteriorType, ConditionType, Color, Assignment, CarGroup, OfferGroup, Offer",
  "examples": {
    "vehicleList": {
      "method": "POST",
      "url": "/tools/vehicle_list",
      "headers": {
        "X-CARPOSE-API-KEY": "your_carpose_api_key_here"
      },
      "body": {
        "itemsPerPage": 10,
        "page": 1
      }
    },
    "vehicleListFiltered": {
      "method": "POST",
      "url": "/tools/vehicle_list",
      "headers": {
        "X-CARPOSE-API-KEY": "your_carpose_api_key_here"
      },
      "body": {
        "manufacturerId": "manufacturer_id_here",
        "priceGte": "10000",
        "priceLte": "50000",
        "itemsPerPage": 10
      }
    },
    "vehicleGet": {
      "method": "POST",
      "url": "/tools/vehicle_get",
      "headers": {
        "X-CARPOSE-API-KEY": "your_carpose_api_key_here"
      },
      "body": {
        "id": "vehicle_id_here"
      }
    },
    "assignmentList": {
      "method": "POST",
      "url": "/tools/assignment_list",
      "headers": {
        "X-CARPOSE-API-KEY": "your_carpose_api_key_here"
      },
      "body": {
        "manufacturerId": "manufacturer_id_here"
      }
    }
  },
  "note": "See GET /tools for complete list of all 35 available tools"
}