Skip to main content
Glama

octomind-mcp

Official
by OctoMind-dev

octomind mcp サーバー: エージェントが E2E テストを作成および管理できるようにする

Octomindは、テストの作成、実行、管理、そして自動修正機能を含む包括的なE2Eプラットフォームを提供します。このMCPサーバーを使用すると、ローカル開発環境でOctomindのツールとリソースを使用し、新しいE2Eテストの作成や実行などが可能になります。詳細については、 https://octomind.dev/およびhttps://octomind.dev/docs/mcp/install-octomind-mcpをご覧ください。

testrail mcp と一緒に動作を確認してください

構成

環境変数

サーバーは次の環境変数を使用します。

  • APIKEY - Octomind API の API キー (必須)
  • OCTOMIND_API_URL - 使用する API エンドポイントのベース URL (デフォルトはhttps://app.octomind.dev/api )
  • REDIS_URL - セッション保存用のRedis接続URL(オプション、形式:redis://host:port)
  • SESSION_EXPIRATION_SECONDS - セッションの有効期限が切れるまでの時間(秒)(オプション、Redis のみ)

コマンドラインオプション

サーバーは次のコマンド ライン オプションをサポートしています。

  • -s, --sse - SSEトランスポートモードを有効にする
  • -t, --stream - ストリーミング可能なHTTPトランスポートモードを有効にする
  • -c, --clients - クライアント設定例を表示
  • -p, --port <port> - リッスンするポート(デフォルト: 3000)
  • -r, --redis-url <url> - セッション保存用のRedis URL
  • -e, --session-expiration <seconds> - セッションの有効期限(秒)

セッションストレージ

サーバーは、次の 2 種類のセッション ストレージをサポートしています。

  1. メモリ内ストレージ(デフォルト) - セッションはメモリ内に保存され、サーバーを再起動すると失われます。
  2. Redis ストレージ- セッションは Redis に保存され、サーバーの再起動後も保持されます。

本番環境では、適切なセッション有効期限を設定したRedisストレージの使用をお勧めします。Redisストレージオプションは、複数のサーバーインスタンスによる水平スケーリングも可能にします。

ログ構成

  • LOG_FILENAME - ログを書き込むファイル(デバッグ専用)。設定されていない場合はログは無効になります。
  • LOG_LEVEL - 使用するログレベル(デフォルトはinfo)

ツール

この MCP サーバーには次のツールが実装されています。

  • search - 指定されたクエリでOctomindドキュメントを検索します
  • getTestCase - 指定されたテストターゲットとテストケースIDのテストケースを取得します
  • executeTests - 指定された URL 上の特定のテスト ターゲットのテスト実行をトリガーします
  • getEnvironments - テストターゲットの環境を一覧表示する
  • createEnvironment - テストターゲット用の新しい環境を作成する
  • updateEnvironment - 既存の環境を更新する
  • deleteEnvironment - 環境を削除する
  • getTestReports - テストターゲットのテストレポートを取得する
  • getTestReport - IDで特定のテストレポートを取得する
  • discovery - 説明またはプロンプトを使用してテストケースを作成する
  • getPrivateLocations - 組織に設定されているすべてのプライベートロケーションを一覧表示します
  • getVersion - Octomind MCP サーバーの現在のバージョンを取得します

インストール

次のコマンドを実行すると、さまざまなクライアントの構成スニペットを取得できます。

npx @octomind/octomind-mcp --clients

Claude Desktop、Cursor、Windsurfの設定例が出力されます。ほとんどのクライアントの設定ファイルは次のとおりです。

Smithery経由でインストール

Smithery経由で Claude Desktop 用の octomind-mcp を自動的にインストールするには:

npx -y @smithery/cli install @OctoMind-dev/octomind-mcp --client claude

クロード デスクトップ (.claude-config.json)

{ "mcpServers": { "octomind-mcp": { "name": "Octomind MCP Server", "command": "npx", "args": [ "-y", "@octomind/octomind-mcp@latest" ], "env": { "APIKEY": "your-api-key-here" } } } }

カーソル (cursor.json)

{ "mcpServers": { "octomind-mcp": { "name": "Octomind MCP Server", "command": "npx", "args": [ "-y", "@octomind/octomind-mcp@latest" ], "env": { "APIKEY": "your-api-key-here" } } } }

ウィンドサーフィン (mcp_config.json)

{ "mcpServers": { "octomind-mcp": { "name": "Octomind MCP Server", "command": "npx", "args": [ "-y", "@octomind/octomind-mcp@latest" ], "environment": { "APIKEY": "your-api-key-here" } } } }

注: your-api-key-here実際の API キーに置き換えてください。

APIKEY を取得するには、こちらhttps://octomind.dev/docs/get-started/execution-without-ci#create-an-api-keyを参照してください。

リスト/統合

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

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.

octomind プラットフォームと対話するための mcp サーバー。octomind は、e2e Web テストの作成、実行、修正ソリューションを提供します。https ://octomind.dev を参照してください。

  1. testrail mcp と一緒に動作を確認してください
    1. 構成
      1. 環境変数
      2. コマンドラインオプション
      3. セッションストレージ
      4. ログ構成
    2. ツール
      1. インストール
        1. Smithery経由でインストール
        2. クロード デスクトップ (.claude-config.json)
        3. カーソル (cursor.json)
        4. ウィンドサーフィン (mcp\_config.json)
      2. リスト/統合

        Related MCP Servers

        • -
          security
          F
          license
          -
          quality
          Playwright MCP server enables AI-driven Playwright test generation by allowing interaction with web pages and element inspection. Integrated with IDEs like Cursor, it provides real-time context to enhance test accuracy and efficiency.
          Last updated -
          682
          6
          TypeScript
          • Apple
        • -
          security
          A
          license
          -
          quality
          An MCP server implementation that integrates with Odoo ERP systems, enabling AI assistants to interact with Odoo data and functionality through the Model Context Protocol.
          Last updated -
          78
          Python
          MIT License
        • A
          security
          A
          license
          A
          quality
          A MCP server offering tools for cryptocurrency research and Ethereum-based automation.
          Last updated -
          113
          45
          35
          TypeScript
          AGPL 3.0
        • A
          security
          A
          license
          A
          quality
          An MCP server that enables AI agents to authenticate with and interact with Open eClass platform instances, supporting UoA's SSO authentication system for retrieving course information and performing basic platform operations.
          Last updated -
          4
          1
          Python
          MIT License

        View all related MCP servers

        MCP directory API

        We provide all the information about MCP servers via our MCP API.

        curl -X GET 'https://glama.ai/api/mcp/v1/servers/OctoMind-dev/octomind-mcp'

        If you have feedback or need assistance with the MCP directory API, please join our Discord server