https://github.com/currents-dev/currents-mcp
Currents MCP Server
https://github.com/currents-dev/currents-mcp
ai currents mcp playwright
Last synced: 2 months ago
JSON representation
Currents MCP Server
- Host: GitHub
- URL: https://github.com/currents-dev/currents-mcp
- Owner: currents-dev
- Created: 2025-04-02T18:56:01.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-04-17T15:35:35.000Z (3 months ago)
- Last Synced: 2025-04-18T06:13:24.033Z (3 months ago)
- Topics: ai, currents, mcp, playwright
- Language: TypeScript
- Homepage: https://currents.dev
- Size: 695 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mcp-servers - currents-mcp - MCP server enabling AI agents to fix Playwright test failures reported to Currents, integrating CI/CD test management with MCP. ([Read more](/details/currents-mcp.md)) `mcp` `testing` `ci/cd` `ai-agent` (Testing & Debugging Tools)
- awesome-mcp-servers - Currents - Enable AI Agents to fix Playwright test failures reported to [Currents](https://currents.dev). (💻 <a name="development-tools"></a>Development Tools)
- awesome-mcp-servers - Currents - Enable AI Agents to fix Playwright test failures reported to [Currents](https://currents.dev). (Official Servers)
- mcp-index - Currents Test Results Context Server - Connects AI agents to Currents for detailed test results context, enabling analysis and optimization of failing tests in continuous integration workflows. Integrates with development tools to enhance test reliability and debugging efficiency. (Developer Tools)
- awesome-mcp-registry - ✅ @currents/mcp
- awesome-mcp-registry - ✅ @currents/mcp
README
# Currents MCP Server
This is a MCP server that allows you to provide test results context to your AI agents by connecting them to Currents. Useful for asking AI to fix or optimize tests failing in CI.
## Tools
1. `get-api-config`
- Get the API key and URL used to make requests to Currents API
2. `get-run`
- Get the run information by its ID
3. `get-spec-file-attempts-and-errors`
- Get the instance information about attempts and errors by its ID
## Setup
### API Key
Get a Currents API key by following the [instructions here](https://docs.currents.dev/resources/api/api-keys).
### Usage with Cursor Editor
1. Go to Cursor Settings > MCP > Enable
2. Add the following to your `mcp.json`.### NPX
```
{
"mcpServers": {
"currents": {
"command": "npx",
"args": [
"-y",
"@currents/mcp"
],
"env": {
"CURRENTS_API_KEY": "your-api-key"
}
}
}
}
```### Usage with Claude Desktop
Add the following to your `claude_desktop_config.json`:### NPX
```
{
"mcpServers": {
"currents": {
"command": "npx",
"args": [
"-y",
"@currents/mcp"
],
"env": {
"CURRENTS_API_KEY": "your-api-key"
}
}
}
}
```