Skip to main content

MCP Calls

cmd/crewship/cmd_admin_extras.go wraps GET /api/v1/mcp-tool-calls. Lists recent MCP tool invocations across the workspace — useful for tracking which external integrations are doing real work and which are dormant.

crewship mcp-calls

Each row in the response carries the tool name, the agent that called it, the arguments, and the outcome.
FlagTypeDefaultEffect
--limit <n>int50Max calls to return. Sent as ?limit=.
--filter <expr>string(unset)Pipe the JSON output through the jq binary (must be installed and on PATH). If jq is missing, the raw, unfiltered output is printed instead.

Examples

crewship mcp-calls
crewship mcp-calls --limit 200
crewship mcp-calls --filter '.[] | select(.tool == "linear:create_issue")'
crewship mcp-calls --format yaml
Default output is indented JSON — the rows don’t have a canonical table form, so JSON + jq is the most useful pretty default.

See also