vectors
Pack: horizons-nasa · Endpoint: https://gateway.pipeworx.io/horizons-nasa/mcp
Convenience: ephemeris with table_type=VECTORS.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
command | string | yes | |
center | string | no | |
start_time | string | yes | |
stop_time | string | yes | |
step_size | string | no |
Example call
Arguments
{
"command": "399",
"start_time": "2026-05-18",
"stop_time": "2026-05-20"
}
curl
curl -X POST https://gateway.pipeworx.io/horizons-nasa/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"vectors","arguments":{"command":"399","start_time":"2026-05-18","stop_time":"2026-05-20"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('vectors', {
"command": "399",
"start_time": "2026-05-18",
"stop_time": "2026-05-20"
});
More examples
{
"command": "2000433",
"center": "500@10",
"start_time": "2026-01-15",
"stop_time": "2026-01-16",
"step_size": "1d"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Vector-table ephemeris data from JPL Horizons"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"horizons-nasa": {
"url": "https://gateway.pipeworx.io/horizons-nasa/mcp"
}
}
}
See Getting Started for client-specific install steps.