Currents MCP サーバー
これは、AIエージェントをCurrentsに接続することで、テスト結果のコンテキストをAIエージェントに提供できるMCPサーバーです。CIで失敗したテストの修正や最適化をAIに依頼する際に役立ちます。
ツール
get-api-config
Currents API へのリクエストに使用する API キーと URL を取得します
get-run
IDで実行情報を取得する
get-spec-file-attempts-and-errors
ID による試行とエラーに関するインスタンス情報を取得します
設定
APIキー
ここの手順に従って、Currents API キーを取得します。
カーソルエディタでの使用
カーソル設定 > MCP > 有効にするに移動します
mcp.jsonに次のコードを追加します。
NPX
{
"mcpServers": {
"currents": {
"command": "npx",
"args": [
"-y",
"@currents/mcp"
],
"env": {
"CURRENTS_API_KEY": "your-api-key"
}
}
}
}
Claude Desktopでの使用
claude_desktop_config.jsonに以下を追加します。
NPX
{
"mcpServers": {
"currents": {
"command": "npx",
"args": [
"-y",
"@currents/mcp"
],
"env": {
"CURRENTS_API_KEY": "your-api-key"
}
}
}
}
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
流れ
Related MCP Servers
- MIT License
- Apache 2.0