Pipeworx tle

v1.0.0

Fetch and search Two-Line Element sets for satellites by NORAD ID or name, providing orbit data for tracking and analysis.

0· 79·0 current·0 all-time
byBruce Gutman@b-gutman

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for b-gutman/pipeworx-tle.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Pipeworx tle" (b-gutman/pipeworx-tle) from ClawHub.
Skill page: https://clawhub.ai/b-gutman/pipeworx-tle
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install pipeworx-tle

ClawHub CLI

Package manager switcher

npx clawhub@latest install pipeworx-tle
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (fetch/search TLEs) matches the SKILL.md: it documents get_tle, search_satellites, and list_recent and shows example calls to an external TLE gateway. No unrelated credentials, binaries, or installs are requested.
Instruction Scope
Instructions are narrowly scoped to calling the remote MCP endpoint (https://gateway.pipeworx.io/tle/mcp) to fetch TLEs. They do not instruct reading local files or other env vars. Note: the skill sends queries to a third-party endpoint — this is expected for a network-backed lookup but is worth knowing.
Install Mechanism
There is no install spec and no code files. This is lowest-risk (instruction-only).
Credentials
No environment variables, credentials, or config paths are requested. That is proportionate to a read-only TLE lookup service.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent system-wide privileges or modify other skills. Autonomous invocation is allowed by platform default but not a separate concern here.
Assessment
This skill is internally consistent with its stated purpose (fetching/searching TLEs) and is instruction-only, but it relies on a third-party endpoint (gateway.pipeworx.io) and has no listed homepage or source repository. Before installing, consider whether you trust that external service: check the provider’s reputation or privacy policy, ensure outgoing network access to that host is acceptable, and be aware that queries (even simple NORAD IDs or names) will be sent to that server. If you need higher assurance, request the skill's source or a known homepage, or prefer a skill backed by a vetted public API or open-source implementation.

Like a lobster shell, security has layers — review code before you run it.

latestvk9714q1qrkk9s923rh618vjme984vbs0
79downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

TLE (Satellite Tracking)

Fetch Two-Line Element sets for satellites. TLEs are the standard format for describing satellite orbits -- used by tracking software, ground stations, and orbital mechanics calculations.

Available tools

get_tle -- Fetch TLE data for a specific satellite by its NORAD catalog ID. Returns the satellite name, epoch date, and both TLE lines.

search_satellites -- Search by name or keyword. "ISS", "Starlink", "GPS", "Hubble" all work. Returns matching satellites with NORAD IDs and TLE data.

list_recent -- The most recently launched or updated satellites, sorted by epoch date.

Example: get the ISS TLE

The ISS has NORAD catalog number 25544:

curl -X POST https://gateway.pipeworx.io/tle/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_tle","arguments":{"norad_id":25544}}}'

Common NORAD IDs

  • ISS: 25544
  • Hubble Space Telescope: 20580
  • NOAA-19: 33591
  • Terra (EOS): 25994
{
  "mcpServers": {
    "tle": {
      "url": "https://gateway.pipeworx.io/tle/mcp"
    }
  }
}

Comments

Loading comments...