cone_search

Pack: mast-nasa · Endpoint: https://gateway.pipeworx.io/mast-nasa/mcp

Search MAST around (RA, Dec).

Parameters

NameTypeRequiredDescription
ranumberyes
decnumberyes
radius_arcminnumbernoDefault 1.0
missionstringnoe.g. “HST”, “JWST”. Optional.
limitnumberno

Example call

Arguments

{
  "ra": 83.6331,
  "dec": 22.0145,
  "radius_arcmin": 5,
  "mission": "HST",
  "limit": 100
}

curl

curl -X POST https://gateway.pipeworx.io/mast-nasa/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cone_search","arguments":{"ra":83.6331,"dec":22.0145,"radius_arcmin":5,"mission":"HST","limit":100}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('cone_search', {
  "ra": 83.6331,
  "dec": 22.0145,
  "radius_arcmin": 5,
  "mission": "HST",
  "limit": 100
});

More examples

{
  "ra": 210.8022,
  "dec": -60.3699,
  "limit": 50
}

Response shape

FieldTypeDescription
dataarrayArray of observation records matching cone search criteria
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of observation records matching cone search criteria",
      "items": {
        "type": "object",
        "properties": {
          "obs_collection": {
            "type": "string",
            "description": "Mission/collection name (e.g. HST, JWST)"
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "mast-nasa": {
      "url": "https://gateway.pipeworx.io/mast-nasa/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026