Parity: currents-mcp ↔ Currents API#63
Open
miguelangaranocurrents wants to merge 1 commit intomainfrom
Open
Conversation
- Implement GET /errors/{projectId} endpoint
- Add currents-get-errors-explorer tool with full parameter support
- Support error-specific filters (target, message, category, action)
- Support grouping and timeline metrics
- Update documentation with new tool
- All tests passing, build successful
Achieves 100% parity: 28 REST API operations → 28 MCP tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Objective
Bring currents-mcp to complete parity with the Currents REST API.
Parity Matrix
/actionslistActionscurrents-list-actions/actionscreateActioncurrents-create-action/actions/{actionId}getActioncurrents-get-action/actions/{actionId}updateActioncurrents-update-action/actions/{actionId}deleteActioncurrents-delete-action/actions/{actionId}/enableenableActioncurrents-enable-action/actions/{actionId}/disabledisableActioncurrents-disable-action/projectslistProjectscurrents-get-projects/projects/{projectId}getProjectcurrents-get-project/projects/{projectId}/runslistProjectRunscurrents-get-runs/projects/{projectId}/insightsgetProjectInsightscurrents-get-project-insights/runs/{runId}getRuncurrents-get-run-details/runs/{runId}deleteRuncurrents-delete-run/runs/findfindRuncurrents-find-run/runs/{runId}/cancelcancelRuncurrents-cancel-run/runs/{runId}/resetresetRuncurrents-reset-run/runs/cancel-ci/githubcancelRunGithubCIcurrents-cancel-run-github-ci/instances/{instanceId}getInstancecurrents-get-spec-instance/spec-files/{projectId}getSpecFilescurrents-get-spec-files-performance/test-results/{signature}getTestResultscurrents-get-test-results/tests/{projectId}getTestscurrents-get-tests-performance/errors/{projectId}getErrorsExplorercurrents-get-errors-explorer/signature/testgenerateSignaturecurrents-get-tests-signatures/webhookslistWebhookscurrents-list-webhooks/webhookscreateWebhookcurrents-create-webhook/webhooks/{hookId}getWebhookcurrents-get-webhook/webhooks/{hookId}updateWebhookcurrents-update-webhook/webhooks/{hookId}deleteWebhookcurrents-delete-webhookSummary of Fixes
Added Endpoints (1)
Parameter Verification
All existing tools verified to match OpenAPI specification:
No Breaking Changes
All existing tools maintain backward compatibility.
Verification
Build Status
```bash
npm run build
✓ TypeScript compilation successful
```
Test Results
```bash
npm test
✓ 3 test files passed (35 tests total)
✓ All request, project, and webhook tests passed
```
Code Quality
References
OpenAPI Specification
Result
28 REST API operations → 28 MCP tools (100% coverage)
Summary by cubic
Adds the Errors Explorer tool to currents-mcp, completing full parity with the Currents REST API. All 28 API operations now have matching MCP tools, with no breaking changes.
Written for commit 726fb65. Summary will update on new commits.