File tree 6 files changed +99
-45
lines changed
6 files changed +99
-45
lines changed Original file line number Diff line number Diff line change
1
+ mcp
2
+ protocol
3
+ validator
4
+ testing
5
+ model-context-protocol
6
+ assistant-tools
7
+ ai
8
+ llm
Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " pip"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " weekly"
7
+ open-pull-requests-limit : 10
8
+ labels :
9
+ - " dependencies"
10
+ - " automated"
11
+ commit-message :
12
+ prefix : " deps"
13
+ reviewers :
14
+ - " scottwilcox"
15
+
16
+ # GitHub Actions
17
+ - package-ecosystem : " github-actions"
18
+ directory : " /"
19
+ schedule :
20
+ interval : " weekly"
21
+ open-pull-requests-limit : 5
22
+ labels :
23
+ - " dependencies"
24
+ - " automated"
25
+ commit-message :
26
+ prefix : " ci"
Original file line number Diff line number Diff line change
1
+ name : Create Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' v*'
7
+
8
+ jobs :
9
+ build :
10
+ name : Create Release
11
+ runs-on : ubuntu-latest
12
+ permissions :
13
+ contents : write
14
+ steps :
15
+ - name : Checkout code
16
+ uses : actions/checkout@v4
17
+ with :
18
+ fetch-depth : 0
19
+
20
+ - name : Set up Python
21
+ uses : actions/setup-python@v5
22
+ with :
23
+ python-version : ' 3.11'
24
+
25
+ - name : Generate release notes
26
+ id : generate_notes
27
+ run : |
28
+ echo "notes=$(cat RELEASE_NOTES.md)" >> $GITHUB_OUTPUT
29
+
30
+ - name : Create Release
31
+ id : create_release
32
+ uses : softprops/action-gh-release@v1
33
+ with :
34
+ body_path : RELEASE_NOTES.md
35
+ draft : false
36
+ prerelease : false
37
+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : Set Repository Topics
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ paths :
8
+ - ' .github/TOPICS'
9
+
10
+ jobs :
11
+ set-topics :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v4
16
+
17
+ - name : Read topics file
18
+ id : topics
19
+ run : |
20
+ TOPICS=$(cat .github/TOPICS | tr '\n' ',')
21
+ echo "list=${TOPICS%,}" >> $GITHUB_OUTPUT
22
+
23
+ - name : Set repository topics
24
+ uses : genneko/github-repo-topics-action@v1
25
+ with :
26
+ topics : ${{ steps.topics.outputs.list }}
27
+ github_token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ SERVER_COMPATIBILITY.md
9
9
mcp_testing /server_configs /*
10
10
opensource_plan.md
11
11
htmlcov
12
+ .coverage
12
13
13
14
# Virtual environment
14
15
.venv /
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments