Skip to content

Commit b3f15be

Browse files
authored
Merge branch 'main' into rebase-registry-dep
2 parents 2b32acd + fe54771 commit b3f15be

File tree

8 files changed

+60
-9
lines changed

8 files changed

+60
-9
lines changed

.github/workflows/claude.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Claude PR Assistant
2+
3+
# This workflow allows mentioning @claude in issues and PRs for interactive AI assistance
4+
# Trigger conditions: issue comments, PR review comments, PR reviews, and new issues
5+
on:
6+
issue_comment:
7+
types: [created]
8+
pull_request_review_comment:
9+
types: [created]
10+
pull_request_review:
11+
types: [submitted]
12+
issues:
13+
types: [opened, edited]
14+
15+
# Permissions required for Claude to read repository content and interact with PRs/issues
16+
permissions:
17+
contents: read # Read repository files and code
18+
pull-requests: read # Read PR information and comments
19+
issues: read # Read issue information and comments
20+
actions: read # Read workflow information
21+
id-token: write # Required for authentication with Anthropic
22+
23+
jobs:
24+
claude-assistant:
25+
# Only run if the comment/issue contains @claude mention
26+
if: contains(github.event.comment.body, '@claude') || contains(github.event.issue.body, '@claude') || contains(github.event.review.body, '@claude')
27+
28+
runs-on: ubuntu-latest
29+
30+
# Set timeout to prevent runaway workflows
31+
timeout-minutes: 20
32+
33+
steps:
34+
# Check out the repository code so Claude can access it
35+
- name: Checkout repository
36+
uses: actions/checkout@v4
37+
38+
# Run Claude Code Action to provide AI assistance
39+
# This action will analyze the context and respond to the @claude mention
40+
- name: Run Claude PR Assistant
41+
uses: anthropics/claude-code-action@v1
42+
with:
43+
# API key for authenticating with Anthropic's Claude API
44+
# This must be added as a repository secret at:
45+
# Settings → Secrets and variables → Actions → New repository secret
46+
anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}
47+
48+
# GitHub token is automatically provided by GitHub Actions
49+
# Used for reading/writing comments and accessing repository data
50+
github-token: ${{ secrets.GITHUB_TOKEN }}

registry/heroku-mcp-server/spec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ env_vars:
7070
secret: false
7171
args: []
7272
metadata:
73-
stars: 69
73+
stars: 70
7474
pulls: 0
75-
last_updated: 2025-10-11T02:26:18Z
75+
last_updated: 2025-10-29T02:33:59Z
7676
repository_url: https://github.com/heroku/heroku-mcp-server
7777
tags:
7878
- heroku

registry/kiwi/spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ tools:
1818
metadata:
1919
stars: 3
2020
pulls: 0
21-
last_updated: 2025-10-11T02:26:18Z
21+
last_updated: 2025-10-29T02:34:00Z

registry/mongodb/spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ tags:
4545
- database
4646
- data
4747
- query
48-
image: docker.io/mongodb/mongodb-mcp-server:1.1.0
48+
image: docker.io/mongodb/mongodb-mcp-server:1.2.0
4949
permissions:
5050
network:
5151
outbound:

registry/sentry-remote/spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ tools:
4040
metadata:
4141
stars: 0
4242
pulls: 0
43-
last_updated: 2025-10-10T02:29:32Z
43+
last_updated: 2025-10-29T02:33:58Z

registry/square/spec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ tools:
2222
- get_type_info
2323
- get_service_info
2424
metadata:
25-
stars: 82
25+
stars: 84
2626
pulls: 0
27-
last_updated: 2025-10-10T02:29:32Z
27+
last_updated: 2025-10-29T02:33:59Z

registry/stripe-remote/spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ tools:
5555
metadata:
5656
stars: 0
5757
pulls: 0
58-
last_updated: 2025-10-10T02:29:32Z
58+
last_updated: 2025-10-29T02:33:59Z

registry/terraform/spec.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ tools:
1414
- get_latest_provider_version
1515
- get_module_details
1616
- get_policy_details
17+
- get_provider_capabilities
1718
- get_provider_details
1819
- search_modules
1920
- search_policies
@@ -37,7 +38,7 @@ tags:
3738
- aws
3839
- gcp
3940
- azure
40-
image: docker.io/hashicorp/terraform-mcp-server:0.3.1
41+
image: docker.io/hashicorp/terraform-mcp-server:0.3.2
4142
permissions:
4243
network:
4344
outbound:

0 commit comments

Comments
 (0)