Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Get real-time SEPTA Regional Rail train schedules, departures, arrival times, delays, and status between stations in the Philadelphia area --- name: septa description: Get real-time SEPTA Regional Rail train schedules, departures, arrival times, delays, and status between stations in the Philadelphia area version: 1.2.0 user-invocable: true slash-command: septa metadata: openclaw: requires: bins: [node] emoji: "๐" category: transportation tags: [septa, trains, philadelphia, transit, realtime, regional-rail] network: true parameters: type: object proper Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
septa is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Get real-time SEPTA Regional Rail train schedules, departures, arrival times, delays, and status between stations in the Philadelphia area --- name: septa description: Get real-time SEPTA Regional Rail train schedules, departures, arrival times, delays, and status between stations in the Philadelphia area version: 1.2.0 user-invocable: true slash-command: septa metadata: openclaw: requires: bins: [node] emoji: "๐" category: transportation tags: [septa, trains, philadelphia, transit, realtime, regional-rail] network: true parameters: type: object proper
Public facts
6
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Degrandis
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/DeGrandis/septa-cli.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Degrandis
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
markdown
# Departures from Suburban Station *Suburban Station Departures: February 23, 2026, 10:47 am* ## Northbound | Train | Origin | Destination | Line | Path | Depart | Track | Platform | Service | Status | |-------|--------|-------------|------|------|--------|-------|----------|---------|--------| | 4224 | Airport Terminal E-F | Norristown | Airport | R4/2N | 2026-02-23 11:05:00.000 | 1 | A | LOCAL | 9 min |
markdown
# Trains from 30th Street Station to Airport Terminal A | Train | Line | Depart | Arrive | Direct | Status | |-------|------|--------|---------|--------|--------| | 5432 | Airport | 3:55 PM | 4:12 PM | Yes | On time |
markdown
# Active Regional Rail Trains | Train | Line | Origin | Destination | Current | Next Stop | Service | Track | GPS | Heading | Consist | Status | |-------|------|--------|-------------|---------|-----------|---------|-------|-----|---------|---------|--------| | 1711 | Trenton | Market East | Trenton | Jefferson Station | Market East | LOCAL | 3 | 39.9538889,-75.1677778 | 120.1deg | - | 20 min late |
markdown
# Schedule for Train 2335 | Station | Scheduled | Estimated | Actual | |---------|-----------|-----------|--------| | Suburban Station | 10:59 pm | 10:56 pm | 10:56 pm | | Gray 30th Street | 11:03 pm | 11:02 pm | 11:02 pm |
json
{
"station": "Suburban Station",
"timestamp": "Suburban Station Departures: February 13, 2026, 3:45 pm",
"northbound": [
{
"direction": "N",
"train_id": "435",
"destination": "Thorndale",
"line": "Paoli/Thorndale",
"depart_time": "3:51 PM",
"track": "4",
"status": "On Time"
}
],
"southbound": [...]
}json
{
"from": "30th Street Station",
"to": "Airport Terminal A",
"trains": [
{
"orig_train": "5432",
"orig_line": "Airport",
"orig_departure_time": "3:55 PM",
"orig_arrival_time": "4:12 PM",
"orig_delay": "On time"
}
]
}Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Get real-time SEPTA Regional Rail train schedules, departures, arrival times, delays, and status between stations in the Philadelphia area --- name: septa description: Get real-time SEPTA Regional Rail train schedules, departures, arrival times, delays, and status between stations in the Philadelphia area version: 1.2.0 user-invocable: true slash-command: septa metadata: openclaw: requires: bins: [node] emoji: "๐" category: transportation tags: [septa, trains, philadelphia, transit, realtime, regional-rail] network: true parameters: type: object proper
name: septa description: Get real-time SEPTA Regional Rail train schedules, departures, arrival times, delays, and status between stations in the Philadelphia area version: 1.2.0 user-invocable: true slash-command: septa
metadata: openclaw: requires: bins: [node] emoji: "๐" category: transportation tags: [septa, trains, philadelphia, transit, realtime, regional-rail] network: true
parameters: type: object properties: command: type: string enum: [departures, to, trains, train] description: "Type of query: 'departures' for all trains from a station, 'to' for direct trains between stations, 'trains' for all active trains, 'train' for specific train schedule" station: type: string description: "Station name for departures (e.g., 'Suburban Station', 'Paoli')" origin: type: string description: "Starting station for 'to' command (e.g., '30th Street Station')" destination: type: string description: "Ending station for 'to' command (e.g., 'Airport Terminal A')" train_number: type: string description: "Train number for 'train' command (e.g., '2335')" results: type: integer description: "Number of results to return (default: 10 for departures, 5 for direct trains)" default: 10 required: [command]
examples: - prompt: "When is the next train from Suburban Station?" call: septa args: command: departures station: "Suburban Station" results: 5
- prompt: "Next train from 30th Street to Malvern"
call: septa
args:
command: to
origin: "30th Street Station"
destination: "Malvern"
results: 3
- prompt: "What trains are leaving from Paoli?"
call: septa
args:
command: departures
station: "Paoli"
- prompt: "Show me all active trains right now"
call: septa
args:
command: trains
- prompt: "What's the schedule for train 2335?"
call: septa
args:
command: train
train_number: "2335"
Get real-time SEPTA Regional Rail train information including departures from any station, direct train schedules between stations, live status of all active trains, and detailed schedules for specific trains.
Execution: This skill uses the septacli executable.
Output Format: Returns markdown tables by default for LLM-friendly parsing. Add --json flag for structured JSON output.
There are four main commands:
Command: ~/.openclaw/skills/septa_cli/septacli departures "<station>" [results] [--json]
Command: ~/.openclaw/skills/septa_cli/septacli to "<fromStation>" "<toStation>" [results] [--json]
Command: ~/.openclaw/skills/septa_cli/septacli trains [--json]
Command: ~/.openclaw/skills/septa_cli/septacli train "<trainNumber>" [--json]
Station names MUST be exact (including spaces and capitalization).
Common stations:
Full list available at: https://www3.septa.org/VIRegionalRail.html
User: "When is the next train from Suburban Station?"
Command: ~/.openclaw/skills/septa_cli/septacli departures "Suburban Station" 5
Output: Markdown table with northbound and southbound trains:
# Departures from Suburban Station
*Suburban Station Departures: February 23, 2026, 10:47 am*
## Northbound
| Train | Origin | Destination | Line | Path | Depart | Track | Platform | Service | Status |
|-------|--------|-------------|------|------|--------|-------|----------|---------|--------|
| 4224 | Airport Terminal E-F | Norristown | Airport | R4/2N | 2026-02-23 11:05:00.000 | 1 | A | LOCAL | 9 min |
User: "When does the next train to the airport leave from 30th Street?"
Command: ~/.openclaw/skills/septa_cli/septacli to "30th Street Station" "Airport Terminal A" 3
Output: Markdown table with direct trains:
# Trains from 30th Street Station to Airport Terminal A
| Train | Line | Depart | Arrive | Direct | Status |
|-------|------|--------|---------|--------|--------|
| 5432 | Airport | 3:55 PM | 4:12 PM | Yes | On time |
User: "What trains are running right now?"
Command: ~/.openclaw/skills/septa_cli/septacli trains
Output: Markdown table with all active trains:
# Active Regional Rail Trains
| Train | Line | Origin | Destination | Current | Next Stop | Service | Track | GPS | Heading | Consist | Status |
|-------|------|--------|-------------|---------|-----------|---------|-------|-----|---------|---------|--------|
| 1711 | Trenton | Market East | Trenton | Jefferson Station | Market East | LOCAL | 3 | 39.9538889,-75.1677778 | 120.1deg | - | 20 min late |
User: "Show me all the stops for train 2335"
Command: ~/.openclaw/skills/septa_cli/septacli train "2335"
Output: Markdown table with complete schedule:
# Schedule for Train 2335
| Station | Scheduled | Estimated | Actual |
|---------|-----------|-----------|--------|
| Suburban Station | 10:59 pm | 10:56 pm | 10:56 pm |
| Gray 30th Street | 11:03 pm | 11:02 pm | 11:02 pm |
An LLM can chain commands together for comprehensive answers:
Scenario: User asks "I need to get from 30th Street to Suburban Station, which train should I take and when does it stop at each station?"
Workflow:
Step 1: Run septacli to "30th Street Station" "Suburban Station"
Step 2: Run septacli train "435"
Step 3: Present comprehensive answer to user:
Another Scenario: User asks "Are there any delays on trains to the airport right now?"
Workflow:
septacli trains to get all active trainsDefault: Markdown tables (shown in examples above)
JSON Mode: Add --json flag to any command for structured JSON output
{
"station": "Suburban Station",
"timestamp": "Suburban Station Departures: February 13, 2026, 3:45 pm",
"northbound": [
{
"direction": "N",
"train_id": "435",
"destination": "Thorndale",
"line": "Paoli/Thorndale",
"depart_time": "3:51 PM",
"track": "4",
"status": "On Time"
}
],
"southbound": [...]
}
{
"from": "30th Street Station",
"to": "Airport Terminal A",
"trains": [
{
"orig_train": "5432",
"orig_line": "Airport",
"orig_departure_time": "3:55 PM",
"orig_arrival_time": "4:12 PM",
"orig_delay": "On time"
}
]
}
[
{
"lat": "40.0123",
"lon": "-75.1234",
"trainno": "2335",
"service": "LOCAL",
"dest": "Elwyn Station",
"currentstop": "Suburban Station",
"nextstop": "Gray 30th Street",
"line": "Media/Elwyn",
"consist": "4",
"heading": "S",
"late": 2,
"SOURCE": "02/18/2026 10:56:00 PM",
"TRACK": "4",
"TRACK_CHANGE": ""
}
]
{
"train_number": "2335",
"schedule": [
{
"station": "Suburban Station",
"sched_tm": "10:59 pm",
"est_tm": "10:56 pm",
"act_tm": "10:56 pm"
},
{
"station": "Gray 30th Street",
"sched_tm": "11:03 pm",
"est_tm": "11:02 pm",
"act_tm": "11:02 pm"
}
]
}
fetch (requires Node 18+)https://www3.septa.org/apiseptacli executable (made with Node.js shebang)trains + train commands for detailed journey planninghttps://www3.septa.org/api/Arrivals/index.php?station={station}&results={n}/NextToArrive/index.php?req1={from}&req2={to}&req3={n}/TrainView/index.php/RRSchedules/index.php?req1={trainNumber}Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/degrandis-septa-cli/snapshot"
curl -s "https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract"
curl -s "https://xpersona.co/api/v1/agents/degrandis-septa-cli/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/DeGrandis/septa-cli#input",
"outputSchemaRef": "https://github.com/DeGrandis/septa-cli#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:45:54.224Z",
"sourceUpdatedAt": "2026-02-24T19:45:54.224Z",
"freshnessSeconds": 4419807
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/degrandis-septa-cli/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/degrandis-septa-cli/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:29:21.575Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "chain",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "combine",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:chain|supported|profile capability:combine|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:45:54.224Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:45:54.224Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/DeGrandis/septa-cli#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:45:54.224Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Degrandis",
"href": "https://github.com/DeGrandis/septa-cli",
"sourceUrl": "https://github.com/DeGrandis/septa-cli",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/degrandis-septa-cli/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to septa and adjacent AI workflows.