From f39e4a8e1f9891ae5320c5464da0ec04aa009237 Mon Sep 17 00:00:00 2001 From: internet-dot <207546839+internet-dot@users.noreply.github.com> Date: Mon, 6 Apr 2026 16:37:43 +0000 Subject: [PATCH] Add Codex plugin manifest and scanner CI --- .codex-plugin/plugin.json | 10 ++++++++++ .github/workflows/codex-plugin-scanner.yml | 16 ++++++++++++++++ .mcp.json | 8 ++++++++ 3 files changed, 34 insertions(+) create mode 100644 .codex-plugin/plugin.json create mode 100644 .github/workflows/codex-plugin-scanner.yml create mode 100644 .mcp.json diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..ea98cc6 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,10 @@ +{ + "name": "browserstack-mcp-server", + "version": "1.0.0", + "description": "BrowserStack MCP Server for test case management, automated testing, and code debugging", + "author": { + "name": "BrowserStack" + }, + "repository": "https://github.com/browserstack/mcp-server", + "keywords": ["browserstack", "testing", "mcp", "automation"] +} \ No newline at end of file diff --git a/.github/workflows/codex-plugin-scanner.yml b/.github/workflows/codex-plugin-scanner.yml new file mode 100644 index 0000000..fc11abd --- /dev/null +++ b/.github/workflows/codex-plugin-scanner.yml @@ -0,0 +1,16 @@ +name: Codex Plugin Scanner + +on: + push: + paths: + - '.codex-plugin/plugin.json' + pull_request: + paths: + - '.codex-plugin/plugin.json' + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: hashgraph-online/codex-plugin-scanner-action@v1 \ No newline at end of file diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..59e583d --- /dev/null +++ b/.mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "browserstack-mcp-server": { + "command": "npx", + "args": ["-y", "@browserstack/mcp-server"] + } + } +} \ No newline at end of file