Our review
Shows current Apify MCP session state and recent actor run cost history.
Strengths
- Quick overview of active MCP sessions.
- Tracks cumulative costs of actor executions.
- Uses simple bash commands with no manual setup required.
Limitations
- Relies on the ~/.apify-costs.log file which must exist.
- Only works with sessions managed via mcpc.
- Cost history limited to the last 20 entries.
When you want to quickly check your MCP connection status or review your Apify spending.
If you need detailed cost analysis or advanced session management.
Security analysis
SafeThe skill only executes read-only commands (mcpc, tail, awk) on local files to display session info and cost history. No destructive or exfiltration actions are present.
No concerns found
Examples
Show me my current Apify MCP sessions.What are my recent Apify actor run costs?Show me the Apify status including sessions and costs.name: apify-status description: "Shows current Apify/mcpc session state and run cost history. Use when the user asks about their Apify usage, mcpc session status, costs, or wants to see what actors were run recently." allowed-tools: Bash(mcpc *), Bash(tail *), Bash(awk *) argument-hint: "[sessions | costs | all]"
apify-status
Run the following commands and present the results to the user.
Sessions
Current mcpc sessions (shows which MCP servers are connected):
mcpc
Cost history
Recent actor runs (last 20 entries from cost log):
tail -n 20 ~/.apify-costs.log
Total spend across all logged runs:
awk -F'\t' '{match($0,/usd=([0-9.]+)/,a); sum+=a[1]} END{printf "Total: $%.4f USD\n", sum}' ~/.apify-costs.log
If either cost command fails (file not found), inform the user that cost tracking starts automatically once they run an actor with call-actor ... --json. No manual setup needed.
Notes
- Cost log:
~/.apify-costs.log— auto-populated by a PostToolUse hook on everycall-actor --jsoncall. Override path with$APIFY_COST_LOG. - Sessions: managed via
mcpc mcp.apify.com connect @apify. If sessions are missing, run the setup commands from the/apify-mcpcskill README.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.