awslabs.git-repo-research-mcp-server 1.0.5__py3-none-any.whl → 1.0.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,4 +13,4 @@
13
13
  # limitations under the License.
14
14
  """awslabs.git-repo-research-mcp-server"""
15
15
 
16
- __version__ = '0.0.0'
16
+ __version__ = '1.0.8'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: awslabs.git-repo-research-mcp-server
3
- Version: 1.0.5
3
+ Version: 1.0.8
4
4
  Summary: An AWS Labs Model Context Protocol (MCP) server for researching git repositories
5
5
  Project-URL: Homepage, https://awslabs.github.io/mcp/
6
6
  Project-URL: Documentation, https://awslabs.github.io/mcp/servers/git-repo-research-mcp-server/
@@ -74,7 +74,7 @@ This MCP server enables developers to research external Git repositories and inf
74
74
 
75
75
  | Cursor | VS Code |
76
76
  |:------:|:-------:|
77
- | [![Install MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/install-mcp?name=awslabs.git-repo-research-mcp-server&config=eyJjb21tYW5kIjoidXZ4IGF3c2xhYnMuZ2l0LXJlcG8tcmVzZWFyY2gtbWNwLXNlcnZlckBsYXRlc3QiLCJlbnYiOnsiQVdTX1BST0ZJTEUiOiJ5b3VyLXByb2ZpbGUtbmFtZSIsIkFXU19SRUdJT04iOiJ1cy13ZXN0LTIiLCJGQVNUTUNQX0xPR19MRVZFTCI6IkVSUk9SIiwiR0lUSFVCX1RPS0VOIjoieW91ci1naXRodWItdG9rZW4ifSwiZGlzYWJsZWQiOmZhbHNlLCJhdXRvQXBwcm92ZSI6W119) | [![Install on VS Code](https://img.shields.io/badge/Install_on-VS_Code-FF9900?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=Git%20Repo%20Research%20MCP%20Server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.git-repo-research-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22AWS_PROFILE%22%3A%22your-profile-name%22%2C%22AWS_REGION%22%3A%22us-west-2%22%2C%22FASTMCP_LOG_LEVEL%22%3A%22ERROR%22%2C%22GITHUB_TOKEN%22%3A%22your-github-token%22%7D%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%5D%7D) |
77
+ | [![Install MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en/install-mcp?name=awslabs.git-repo-research-mcp-server&config=eyJjb21tYW5kIjoidXZ4IGF3c2xhYnMuZ2l0LXJlcG8tcmVzZWFyY2gtbWNwLXNlcnZlckBsYXRlc3QiLCJlbnYiOnsiQVdTX1BST0ZJTEUiOiJ5b3VyLXByb2ZpbGUtbmFtZSIsIkFXU19SRUdJT04iOiJ1cy13ZXN0LTIiLCJGQVNUTUNQX0xPR19MRVZFTCI6IkVSUk9SIiwiR0lUSFVCX1RPS0VOIjoieW91ci1naXRodWItdG9rZW4ifSwiZGlzYWJsZWQiOmZhbHNlLCJhdXRvQXBwcm92ZSI6W119) | [![Install on VS Code](https://img.shields.io/badge/Install_on-VS_Code-FF9900?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=Git%20Repo%20Research%20MCP%20Server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.git-repo-research-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22AWS_PROFILE%22%3A%22your-profile-name%22%2C%22AWS_REGION%22%3A%22us-west-2%22%2C%22FASTMCP_LOG_LEVEL%22%3A%22ERROR%22%2C%22GITHUB_TOKEN%22%3A%22your-github-token%22%7D%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%5D%7D) |
78
78
 
79
79
  To add this MCP server to your Amazon Q or Claude, add the following to your MCP config file:
80
80
 
@@ -96,6 +96,35 @@ To add this MCP server to your Amazon Q or Claude, add the following to your MCP
96
96
  }
97
97
  }
98
98
  ```
99
+ ### Windows Installation
100
+
101
+ For Windows users, the MCP server configuration format is slightly different:
102
+
103
+ ```json
104
+ {
105
+ "mcpServers": {
106
+ "awslabs.git-repo-research-mcp-server": {
107
+ "disabled": false,
108
+ "timeout": 60,
109
+ "type": "stdio",
110
+ "command": "uv",
111
+ "args": [
112
+ "tool",
113
+ "run",
114
+ "--from",
115
+ "awslabs.git-repo-research-mcp-server@latest",
116
+ "awslabs.git-repo-research-mcp-server.exe"
117
+ ],
118
+ "env": {
119
+ "FASTMCP_LOG_LEVEL": "ERROR",
120
+ "AWS_PROFILE": "your-aws-profile",
121
+ "AWS_REGION": "us-east-1"
122
+ }
123
+ }
124
+ }
125
+ }
126
+ ```
127
+
99
128
 
100
129
  ## Tools
101
130
 
@@ -1,5 +1,5 @@
1
1
  awslabs/__init__.py,sha256=G7eEcWsmny92kyAWsWZfTcvujk7GZEKSZgniz3M4mvU,730
2
- awslabs/git_repo_research_mcp_server/__init__.py,sha256=9vMh0_8PFhXNc3qg5-SI_0T2mxKjKSjCSVlBi9ceCOk,681
2
+ awslabs/git_repo_research_mcp_server/__init__.py,sha256=RyQPhUHPWnim_kyGvA8fYcvpVnSB7_INBt13QKlR_kc,681
3
3
  awslabs/git_repo_research_mcp_server/defaults.py,sha256=ysNJoPzAQqF8LK5wYANlMFUZrsicChGyCl4bWewhiA4,7678
4
4
  awslabs/git_repo_research_mcp_server/embeddings.py,sha256=XOhJX1g-sZWkCYVwVDdcV9YgrWaN-3dmOtali6ebokU,2509
5
5
  awslabs/git_repo_research_mcp_server/github_search.py,sha256=0sZL7o7Q29ub73FVfKF2pHXIcCzxH3UIx8jtIHFStmU,16193
@@ -9,9 +9,9 @@ awslabs/git_repo_research_mcp_server/repository.py,sha256=c9aSuc7W8H4c7YK-cQx80T
9
9
  awslabs/git_repo_research_mcp_server/search.py,sha256=jvouzpOc_VKMIzmKgXng6ynXJ_Wm71JUIcXMxmIhCo0,13799
10
10
  awslabs/git_repo_research_mcp_server/server.py,sha256=4o6KlPPRO86uj4vZb10uNTWQ0uwUKygNMWILXL1yv9M,34163
11
11
  awslabs/git_repo_research_mcp_server/utils.py,sha256=bhf-0E6gsyVTFTnaBHrZnVVxTpp9x3V1vR4n1TwKkQw,15076
12
- awslabs_git_repo_research_mcp_server-1.0.5.dist-info/METADATA,sha256=QQCAxnnPmok71UpSswEgwJyku3AxCiMrHgZwFMlxAh0,7177
13
- awslabs_git_repo_research_mcp_server-1.0.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
14
- awslabs_git_repo_research_mcp_server-1.0.5.dist-info/entry_points.txt,sha256=jX-BkQM7l_OK8D_iq_B4ukRuChbKjA4P4Q0IMikM4Ys,106
15
- awslabs_git_repo_research_mcp_server-1.0.5.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
16
- awslabs_git_repo_research_mcp_server-1.0.5.dist-info/licenses/NOTICE,sha256=fnpchtUnC9htWDzn7WbOrBYePd9UUEYXytHe98AB34w,104
17
- awslabs_git_repo_research_mcp_server-1.0.5.dist-info/RECORD,,
12
+ awslabs_git_repo_research_mcp_server-1.0.8.dist-info/METADATA,sha256=8go9PnfoBd6XkiQS8StJ53U5UgXhAvuWJEqiKKxNtPM,7786
13
+ awslabs_git_repo_research_mcp_server-1.0.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
14
+ awslabs_git_repo_research_mcp_server-1.0.8.dist-info/entry_points.txt,sha256=jX-BkQM7l_OK8D_iq_B4ukRuChbKjA4P4Q0IMikM4Ys,106
15
+ awslabs_git_repo_research_mcp_server-1.0.8.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
16
+ awslabs_git_repo_research_mcp_server-1.0.8.dist-info/licenses/NOTICE,sha256=fnpchtUnC9htWDzn7WbOrBYePd9UUEYXytHe98AB34w,104
17
+ awslabs_git_repo_research_mcp_server-1.0.8.dist-info/RECORD,,