Skip to content

Commit d416396

Browse files
authored
Merge branch 'main' into convert-everything-to-modern-api
2 parents f0fc52c + 33e029f commit d416396

11 files changed

Lines changed: 795 additions & 982 deletions

File tree

.github/workflows/claude.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Run Claude Code
3434
id: claude
35-
uses: anthropics/claude-code-action@beta
35+
uses: anthropics/claude-code-action@v1
3636
with:
3737
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
3838

@@ -42,10 +42,7 @@ jobs:
4242
4343
# Trigger when assigned to an issue
4444
assignee_trigger: "claude"
45-
46-
# Allow Claude to run bash
47-
# This should be safe given the repo is already public
48-
allowed_tools: "Bash"
49-
50-
custom_instructions: |
51-
If posting a comment to GitHub, give a concise summary of the comment at the top and put all the details in a <details> block.
45+
46+
claude_args: |
47+
--allowedTools Bash
48+
--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 <details> block."

.github/workflows/typescript.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,9 @@ jobs:
4141
working-directory: src/${{ matrix.package }}
4242
run: npm ci
4343

44-
- name: Check if tests exist
45-
id: check-tests
46-
working-directory: src/${{ matrix.package }}
47-
run: |
48-
if npm run test --silent 2>/dev/null; then
49-
echo "has-tests=true" >> $GITHUB_OUTPUT
50-
else
51-
echo "has-tests=false" >> $GITHUB_OUTPUT
52-
fi
53-
continue-on-error: true
54-
5544
- name: Run tests
56-
if: steps.check-tests.outputs.has-tests == 'true'
5745
working-directory: src/${{ matrix.package }}
58-
run: npm test
46+
run: npm test --if-present
5947

6048
build:
6149
needs: [detect-packages, test]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -854,6 +854,7 @@ A growing set of community-developed and maintained servers demonstrates various
854854
- **[GraphQL](https://github.com/drestrepom/mcp_graphql)** - Comprehensive GraphQL API integration that automatically exposes each GraphQL query as a separate tool.
855855
- **[GraphQL Schema](https://github.com/hannesj/mcp-graphql-schema)** - Allow LLMs to explore large GraphQL schemas without bloating the context.
856856
- **[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.
857+
- **[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.
857858
- **[gx-mcp-server](https://github.com/davidf9999/gx-mcp-server)** - Expose Great Expectations data validation and quality checks as MCP tools for AI agents.
858859
- **[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.
859860
- **[HAProxy](https://github.com/tuannvm/haproxy-mcp-server)** - A Model Context Protocol (MCP) server for HAProxy implemented in Go, leveraging HAProxy Runtime API.

0 commit comments

Comments
 (0)