← Back to search

@currents/mcp

GitHub Actions Scanned 12d ago

Currents MCP server

B
76.5 / 100

Versions

No versions found.

PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 39

currents-list-affected-tests
annotations: none low

List tests affected by actions (quarantine, skip, tag) for a project within a date range. Returns aggregated data grouped by test signature. Supports filtering by action types, action ID, status, and search. Requires projectId, date_start, and date_end. Preview endpoint: fields and path may change.

currents-get-affected-test-executions
annotations: none low

Get execution details for a specific affected test (by signature) within a date range. Returns individual test execution records with action info. Uses cursor-based pagination. Requires projectId, signature, date_start, and date_end.

currents-get-affected-executions
annotations: none low

List test executions where a specific action/rule was applied, within a date range. Uses cursor-based pagination. Requires actionId, date_start, and date_end.

currents-get-projects
annotations: none low

Retrieves projects available in the Currents platform. Supports cursor-based pagination with limit, starting_after, ending_before parameters, or set fetchAll=true for automatic pagination. This is a prerequisite for using any other tools that require project-specific information.

currents-get-project
annotations: none low

Get a single project by ID. Returns project details including name, creation date, failFast setting, inactivity timeout, and default branch name.

currents-get-project-insights
annotations: none low

Get aggregated run and test metrics for a project within a date range. Returns overall metrics and timeline data with configurable resolution (1h/1d/1w). Supports filtering by tags, branches, groups, and authors. Requires projectId, date_start, and date_end.

currents-list-pull-requests
annotations: none low

List pull-request cards for a project (runs grouped by meta.pr.id). Supports cursor pagination, runs_per_pr preview count, and filters by tags, branches, authors, and latest-run status. Requires projectId.

currents-list-project-terms
annotations: none low

List cursor-paginated project terms for one type (tag, branch, authorName, etc.). Supports search, sort direction, and starting_after or ending_before cursors. Requires projectId and termType.

currents-create-jira-issue
annotations: none low

Create a Jira issue from a run test using the organization Jira integration. Requires projectId, runId, testId, jiraInstallationId, jiraProjectId, and jiraIssueType. Optional customFields array.

currents-link-jira-issue
annotations: none low

Link an existing Jira issue to a run test using the organization Jira integration. Requires projectId, jiraIssueKey, runId, testId, jiraInstallationId, jiraProjectId, and jiraIssueType. Optional comment and includeContextInComment.

currents-list-jira-projects
annotations: none low

List Jira projects available for the organization integration. Use returned project IDs as jiraProjectId when creating issues. Requires jira_installation_id.

currents-list-jira-issue-types
annotations: none low

List Jira issue types and custom fields for a Jira project. Requires jiraProjectId and jira_installation_id.

currents-get-runs
annotations: none low

Retrieves a list of runs for a specific project with optional filtering. Supports filtering by branch, tags (with AND/OR operators), status (PASSED/FAILED/RUNNING/FAILING), completion state, date range, commit author, and search by ciBuildId or commit message. Requires a projectId. If the projectId is not known, first call 'currents-get-projects' and ask the user to select the project.

currents-get-run-details
annotations: none low

Retrieves details of a specific test run. Requires a user-provided runId.

currents-find-run
annotations: none low

Find a run by query parameters. Returns the most recent completed run matching the criteria. Can search by ciBuildId (exact match) or by branch/tags. Supports pwLastRun flag for Playwright last run info. Requires projectId.

currents-cancel-run
annotations: none low

Cancel a run in progress. This will stop the run and mark it as cancelled. Requires runId.

currents-reset-run
annotations: none low

Reset failed spec files in a run to allow re-execution. Requires runId and machineId array (1-63 machine IDs). Optionally supports batched orchestration.

currents-delete-run
annotations: none low

Delete a run and all associated data. This is a permanent deletion. Requires runId.

currents-cancel-run-github-ci
annotations: none low

Cancel a run by GitHub Actions workflow run ID and attempt number. Optionally scope by projectId or ciBuildId. Requires githubRunId and githubRunAttempt.

currents-get-spec-instance
annotations: none low

Retrieves debugging data from a specific execution of a test spec file by instanceId.

currents-get-spec-files-performance
annotations: none low

Retrieves spec files performance metrics for a specific project within a date range. Supports ordering by avgDuration, failedExecutions, failureRate, flakeRate, flakyExecutions, fullyReported, overallExecutions, suiteSize, timeoutExecutions, or timeoutRate. Supports filtering by tags, branches, groups, and authors. Requires a projectId. If the projectId is not known, first call 'currents-get-projects' and ask the user to select the project.

currents-get-tests-performance
annotations: none low

Retrieves aggregated test metrics for a specific project within a date range. Supports ordering by failures, passes, flakiness, duration, executions, title, and various delta metrics. Supports filtering by spec name, test title, tags, branches, groups, authors, minimum executions, test state, and annotations. Requires a projectId. If the projectId is not known, first call 'currents-get-projects' and ask the user to select the project.

currents-list-actions
annotations: none low

List all actions for a project with optional filtering. Actions are rules that automatically modify test behavior (skip, quarantine, tag). Supports filtering by status (active/disabled/archived/expired) and search by name. Requires a projectId.

currents-create-action
annotations: none low

Create a new action for a project. Actions define rules that automatically skip, quarantine, or tag tests based on conditions like test title, file path, git branch, etc. Requires projectId, name, action array, and matcher object.

currents-get-action
annotations: none low

Get a single action by ID. The actionId is globally unique, so projectId is not required. Returns full action details including matcher conditions and current status.

currents-update-action
annotations: none low

Update an existing action. The actionId is globally unique. You can update name, description, action array, matcher, or expiration date. All fields are optional.

currents-delete-action
annotations: none low

Delete (archive) an action. This is a soft delete - the action will be marked as archived but not permanently removed. The actionId is globally unique.

currents-enable-action
annotations: none low

Enable a disabled action. Changes the action status from disabled to active, making it apply to matching tests again. The actionId is globally unique.

currents-disable-action
annotations: none low

Disable an active action. Changes the action status to disabled, temporarily preventing it from applying to tests. The actionId is globally unique.

currents-get-tests-signatures
annotations: none low

Generates a unique test signature based on project, spec file path, and test title. The test title can be a string or array of strings (for nested describe blocks). Requires a projectId. If the projectId is not known, first call 'currents-get-projects' and ask the user to select the project.

currents-get-test-results
annotations: none low

Retrieves historical test execution results for a specific test signature. Supports filtering by date range, branch, tags, git author, test status (passed/failed/pending/skipped), run group, flaky status, and annotations. Requires the test signature. If the signature is not known, first call 'currents-get-tests-signatures'.

currents-get-context
annotations: none low

Get test failure context for AI debugging at run, instance, or test level. Supports json or md format, detail level, and pagination for failed tests. Requires run_id for run-level, or instance_id with optional test_id.

currents-get-errors-explorer
annotations: none low

Get aggregated error metrics for a project within a date range. Supports filtering by error_target, error_message, error_category, error_action, tags, branches, authors, and groups. Supports grouping by target, action, category, or message. Returns error counts, affected tests and branches, with timeline data. Requires projectId, date_start, and date_end.

currents-get-test-evidence
annotations: none low

Collect evidence artifacts (screenshots, videos, traces, attachments) produced by tests in a CI run, with signed download URLs grouped per test. Use to gather proof or a demo of an implemented feature from CI — e.g. before/after screenshots, text output stored as test attachments, or Playwright videos and traces — instead of running tests locally. Locates the run by runId, or by projectId with ciBuildId or branch (latest run). Supports filtering by spec file, test title, and test status. URLs are signed and time-limited, so download the files promptly.

currents-list-webhooks
annotations: none low

List all webhooks for a project. Webhooks allow you to receive HTTP POST notifications when certain events occur in your test runs: RUN_FINISH (run completed), RUN_START (run started), RUN_TIMEOUT (run timed out), RUN_CANCELED (run was cancelled). Requires a projectId.

currents-create-webhook
annotations: none low

Create a new webhook for a project. Specify the URL to receive POST notifications, optional custom headers (as JSON string), events to trigger on (RUN_FINISH, RUN_START, RUN_TIMEOUT, RUN_CANCELED), and an optional label. Requires projectId and url.

currents-get-webhook
annotations: none low

Get a single webhook by ID. The hookId is a UUID. Returns full webhook details including url, headers, events, label, and timestamps.

currents-update-webhook
annotations: none low

Update an existing webhook. You can update the url, headers (as JSON string), hookEvents array, or label. All fields are optional. The hookId is a UUID.

currents-delete-webhook
annotations: none low

Delete a webhook. This permanently removes the webhook. The hookId is a UUID.

Permissions 3

network medium
Server uses network capabilities via: fetch()
shell high
Server uses shell capabilities via: child_process, spawnSync()
env_vars low
Server uses env_vars capabilities via: process.env

Scan Findings 89

low
Tool 'currents-list-actions' has no annotations annotation_checker · 100%
low
Tool 'currents-create-action' has no annotations annotation_checker · 100%
low
Tool 'currents-get-action' has no annotations annotation_checker · 100%
low
Tool 'currents-update-action' has no annotations annotation_checker · 100%
low
Tool 'currents-delete-action' has no annotations annotation_checker · 100%
low
Tool 'currents-enable-action' has no annotations annotation_checker · 100%
low
Tool 'currents-disable-action' has no annotations annotation_checker · 100%
low
Tool 'currents-list-affected-tests' has no annotations annotation_checker · 100%
low
Tool 'currents-get-affected-test-executions' has no annotations annotation_checker · 100%
low
Tool 'currents-get-affected-executions' has no annotations annotation_checker · 100%
low
Tool 'currents-get-projects' has no annotations annotation_checker · 100%
low
Tool 'currents-get-project' has no annotations annotation_checker · 100%
low
Tool 'currents-get-project-insights' has no annotations annotation_checker · 100%
low
Tool 'currents-list-pull-requests' has no annotations annotation_checker · 100%
low
Tool 'currents-list-project-terms' has no annotations annotation_checker · 100%
low
Tool 'currents-create-jira-issue' has no annotations annotation_checker · 100%
low
Tool 'currents-link-jira-issue' has no annotations annotation_checker · 100%
low
Tool 'currents-list-jira-projects' has no annotations annotation_checker · 100%
low
Tool 'currents-list-jira-issue-types' has no annotations annotation_checker · 100%
low
Tool 'currents-get-runs' has no annotations annotation_checker · 100%
low
Tool 'currents-get-run-details' has no annotations annotation_checker · 100%
low
Tool 'currents-find-run' has no annotations annotation_checker · 100%
low
Tool 'currents-cancel-run' has no annotations annotation_checker · 100%
low
Tool 'currents-reset-run' has no annotations annotation_checker · 100%
low
Tool 'currents-delete-run' has no annotations annotation_checker · 100%
low
Tool 'currents-cancel-run-github-ci' has no annotations annotation_checker · 100%
low
Tool 'currents-get-spec-instance' has no annotations annotation_checker · 100%
low
Tool 'currents-get-spec-files-performance' has no annotations annotation_checker · 100%
low
Tool 'currents-get-tests-performance' has no annotations annotation_checker · 100%
low
Tool 'currents-get-tests-signatures' has no annotations annotation_checker · 100%
low
Tool 'currents-get-test-results' has no annotations annotation_checker · 100%
low
Tool 'currents-get-context' has no annotations annotation_checker · 100%
low
Tool 'currents-get-errors-explorer' has no annotations annotation_checker · 100%
low
Tool 'currents-get-test-evidence' has no annotations annotation_checker · 100%
low
Tool 'currents-list-webhooks' has no annotations annotation_checker · 100%
low
Tool 'currents-create-webhook' has no annotations annotation_checker · 100%
low
Tool 'currents-get-webhook' has no annotations annotation_checker · 100%
low
Tool 'currents-update-webhook' has no annotations annotation_checker · 100%
low
Tool 'currents-delete-webhook' has no annotations annotation_checker · 100%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
medium
Vulnerable dependency: vitest@4.0.18 (GHSA-5xrq-8626-4rwp) dependency_analyzer · 95%
info
package.json metadata manifest_parser · 100%
info
Tool: currents-list-actions manifest_parser · 85%
info
Tool: currents-create-action manifest_parser · 85%
info
Tool: currents-get-action manifest_parser · 85%
info
Tool: currents-update-action manifest_parser · 85%
info
Tool: currents-delete-action manifest_parser · 85%
info
Tool: currents-enable-action manifest_parser · 85%
info
Tool: currents-disable-action manifest_parser · 85%
info
Tool: currents-list-affected-tests manifest_parser · 85%
info
Tool: currents-get-affected-test-executions manifest_parser · 85%
info
Tool: currents-get-affected-executions manifest_parser · 85%
info
Tool: currents-get-projects manifest_parser · 85%
info
Tool: currents-get-project manifest_parser · 85%
info
Tool: currents-get-project-insights manifest_parser · 85%
info
Tool: currents-list-pull-requests manifest_parser · 85%
info
Tool: currents-list-project-terms manifest_parser · 85%
info
Tool: currents-create-jira-issue manifest_parser · 85%
info
Tool: currents-link-jira-issue manifest_parser · 85%
info
Tool: currents-list-jira-projects manifest_parser · 85%
info
Tool: currents-list-jira-issue-types manifest_parser · 85%
info
Tool: currents-get-runs manifest_parser · 85%
info
Tool: currents-get-run-details manifest_parser · 85%
info
Tool: currents-find-run manifest_parser · 85%
info
Tool: currents-cancel-run manifest_parser · 85%
info
Tool: currents-reset-run manifest_parser · 85%
info
Tool: currents-delete-run manifest_parser · 85%
info
Tool: currents-cancel-run-github-ci manifest_parser · 85%
info
Tool: currents-get-spec-instance manifest_parser · 85%
info
Tool: currents-get-spec-files-performance manifest_parser · 85%
info
Tool: currents-get-tests-performance manifest_parser · 85%
info
Tool: currents-get-tests-signatures manifest_parser · 85%
info
Tool: currents-get-test-results manifest_parser · 85%
info
Tool: currents-get-context manifest_parser · 85%
info
Tool: currents-get-errors-explorer manifest_parser · 85%
info
Tool: currents-get-test-evidence manifest_parser · 85%
info
Tool: currents-list-webhooks manifest_parser · 85%
info
Tool: currents-create-webhook manifest_parser · 85%
info
Tool: currents-get-webhook manifest_parser · 85%
info
Tool: currents-update-webhook manifest_parser · 85%
info
Tool: currents-delete-webhook manifest_parser · 85%
info
Transport: streamable-http manifest_parser · 80%
info
Required env vars (4) manifest_parser · 80%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
medium
Permission: network access detected permission_analyzer · 70%
high
Permission: shell access detected permission_analyzer · 95%
low
Permission: env_vars access detected permission_analyzer · 90%
info
SBOM generated: 400 components sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%