Wraps the N2YO satellite tracking REST API so you can query real-time satellite positions, orbital data, and pass predictions directly from your MCP client. Hosted by Pipeworx as a streamable HTTP gateway, which means no local setup. The source doesn't list individual tools, but N2YO's API typically handles lookups by NORAD catalog ID, TLE data retrieval, and visual pass calculations for observers at specific coordinates. Useful if you're building something that needs to know where satellites are right now, when the ISS will be overhead, or which birds are visible from a given location. Part of a larger gateway that bundles 764+ data sources if you need more than just orbital mechanics.
N2YO MCP — wraps the N2YO Satellite Tracking REST API (n2yo.com)
Part of Pipeworx — an MCP gateway connecting AI agents to 764+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"n2yo": {
"url": "https://gateway.pipeworx.io/n2yo/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 764+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about N2yo data" })
The gateway picks the right tool and fills the arguments automatically.
MIT