get_asteroid_lookup
Retrieve detailed information about a specific asteroid by providing its NASA JPL small body ID using this functionality on the NASA-MCP server.
Instructions
Look up a specific asteroid based on its NASA JPL ID.
Args: asteroid_id: Asteroid ID in the NASA JPL small body (SPK-ID) system.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| asteroid_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "asteroid_id": {
      "title": "Asteroid Id",
      "type": "string"
    }
  },
  "required": [
    "asteroid_id"
  ],
  "title": "get_asteroid_lookupArguments",
  "type": "object"
}