diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index b09fc3eb18..2b566cd24d 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -32,7 +32,7 @@ jobs: - name: Run Claude Code id: claude - uses: anthropics/claude-code-action@beta + uses: anthropics/claude-code-action@v1 with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} @@ -42,10 +42,7 @@ jobs: # Trigger when assigned to an issue assignee_trigger: "claude" - - # Allow Claude to run bash - # This should be safe given the repo is already public - allowed_tools: "Bash" - - custom_instructions: | - If posting a comment to GitHub, give a concise summary of the comment at the top and put all the details in a
block. + + claude_args: | + --allowedTools Bash + --system-prompt "If posting a comment to GitHub, give a concise summary of the comment at the top and put all the details in a
block." diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index 87717166f2..c99318bd78 100644 --- a/.github/workflows/typescript.yml +++ b/.github/workflows/typescript.yml @@ -41,21 +41,9 @@ jobs: working-directory: src/${{ matrix.package }} run: npm ci - - name: Check if tests exist - id: check-tests - working-directory: src/${{ matrix.package }} - run: | - if npm run test --silent 2>/dev/null; then - echo "has-tests=true" >> $GITHUB_OUTPUT - else - echo "has-tests=false" >> $GITHUB_OUTPUT - fi - continue-on-error: true - - name: Run tests - if: steps.check-tests.outputs.has-tests == 'true' working-directory: src/${{ matrix.package }} - run: npm test + run: npm test --if-present build: needs: [detect-packages, test] diff --git a/README.md b/README.md index a50b6f1a0a..40053069d6 100644 --- a/README.md +++ b/README.md @@ -854,6 +854,7 @@ A growing set of community-developed and maintained servers demonstrates various - **[GraphQL](https://github.com/drestrepom/mcp_graphql)** - Comprehensive GraphQL API integration that automatically exposes each GraphQL query as a separate tool. - **[GraphQL Schema](https://github.com/hannesj/mcp-graphql-schema)** - Allow LLMs to explore large GraphQL schemas without bloating the context. - **[Graylog](https://github.com/Pranavj17/mcp-server-graylog)** - Search Graylog logs by absolute/relative timestamps, filter by streams, and debug production issues directly from Claude Desktop. +- **[Grok-MCP](https://github.com/merterbak/Grok-MCP)** - MCP server for xAI’s API featuring the latest Grok models, image analysis & generation, and web search. - **[gx-mcp-server](https://github.com/davidf9999/gx-mcp-server)** - Expose Great Expectations data validation and quality checks as MCP tools for AI agents. - **[HackMD](https://github.com/yuna0x0/hackmd-mcp)** (by yuna0x0) - An MCP server for HackMD, a collaborative markdown editor. It allows users to create, read, and update documents in HackMD using the Model Context Protocol. - **[HAProxy](https://github.com/tuannvm/haproxy-mcp-server)** - A Model Context Protocol (MCP) server for HAProxy implemented in Go, leveraging HAProxy Runtime API.