awslabs.git-repo-research-mcp-server 1.0.3__py3-none-any.whl → 1.0.5__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.
@@ -78,7 +78,7 @@ Perform semantic search within an indexed repository.
78
78
  ### delete_research_repository
79
79
  Delete an indexed repository.
80
80
 
81
- ### search_repositories_on_github
81
+ ### search_repos_on_github
82
82
  Search for GitHub repositories based on keywords, scoped to specific organizations.
83
83
 
84
84
  ### access_file
@@ -150,7 +150,7 @@ delete_research_repository(repository_name_or_path="repo_name")
150
150
 
151
151
  ### Searching for GitHub Repositories
152
152
  ```
153
- search_repositories_on_github(
153
+ search_repos_on_github(
154
154
  keywords=["serverless", "lambda"],
155
155
  num_results=10
156
156
  )
@@ -666,7 +666,7 @@ async def mcp_search_repository(
666
666
  raise
667
667
 
668
668
 
669
- @mcp.tool(name='search_repositories_on_github')
669
+ @mcp.tool(name='search_repos_on_github')
670
670
  async def mcp_search_github_repos(
671
671
  ctx: Context,
672
672
  keywords: List[str] = Field(description='List of keywords to search for GitHub repositories'),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: awslabs.git-repo-research-mcp-server
3
- Version: 1.0.3
3
+ Version: 1.0.5
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/
@@ -30,7 +30,7 @@ Requires-Dist: langchain-aws>=0.2.18
30
30
  Requires-Dist: langchain-community>=0.3.20
31
31
  Requires-Dist: langchain>=0.3.22
32
32
  Requires-Dist: loguru>=0.7.3
33
- Requires-Dist: mcp[cli]>=1.6.0
33
+ Requires-Dist: mcp[cli]>=1.11.0
34
34
  Requires-Dist: pydantic>=2.10.6
35
35
  Requires-Dist: requests>=2.32.0
36
36
  Description-Content-Type: text/markdown
@@ -72,6 +72,10 @@ This MCP server enables developers to research external Git repositories and inf
72
72
 
73
73
  ## Installation
74
74
 
75
+ | Cursor | VS Code |
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) |
78
+
75
79
  To add this MCP server to your Amazon Q or Claude, add the following to your MCP config file:
76
80
 
77
81
  ```json
@@ -124,12 +128,12 @@ search_research_repository(
124
128
  ) -> Dict
125
129
  ```
126
130
 
127
- ### search_repositories_on_github
131
+ ### search_repos_on_github
128
132
 
129
133
  Searches for GitHub repositories based on keywords, scoped to AWS organizations.
130
134
 
131
135
  ```python
132
- search_repositories_on_github(
136
+ search_repos_on_github(
133
137
  keywords: List[str],
134
138
  num_results: int = 5
135
139
  ) -> Dict
@@ -158,7 +162,7 @@ delete_research_repository(
158
162
 
159
163
  ## Resources
160
164
 
161
- ### repositories://{repository_name}/summary
165
+ ### repositories://repository_name/summary
162
166
 
163
167
  Get a summary of an indexed repository including structure and helpful files.
164
168
 
@@ -174,7 +178,7 @@ List all indexed repositories with detailed information.
174
178
  repositories://
175
179
  ```
176
180
 
177
- ### repositories://{index_directory}
181
+ ### repositories://index_directory
178
182
 
179
183
  List all indexed repositories from a specific index directory.
180
184
 
@@ -7,11 +7,11 @@ awslabs/git_repo_research_mcp_server/indexer.py,sha256=Xwr0NP8IMQ5xRYlf78Of9N48t
7
7
  awslabs/git_repo_research_mcp_server/models.py,sha256=ecuUuiyKL4A2lTosPo5IqUZoQtJWTCfCbVXy0rhz4l0,12601
8
8
  awslabs/git_repo_research_mcp_server/repository.py,sha256=c9aSuc7W8H4c7YK-cQx80TscdPKWSYIZrqjYZ1uXlMk,10662
9
9
  awslabs/git_repo_research_mcp_server/search.py,sha256=jvouzpOc_VKMIzmKgXng6ynXJ_Wm71JUIcXMxmIhCo0,13799
10
- awslabs/git_repo_research_mcp_server/server.py,sha256=WNIiJB8nepOzu2e2g8ud9eebQJk48og7TGbFlg3Do08,34184
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.3.dist-info/METADATA,sha256=Y1f1GZUL8k9t20Lpkbsmbd68oCto_u-8jfnfvzF9HgY,6106
13
- awslabs_git_repo_research_mcp_server-1.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
14
- awslabs_git_repo_research_mcp_server-1.0.3.dist-info/entry_points.txt,sha256=jX-BkQM7l_OK8D_iq_B4ukRuChbKjA4P4Q0IMikM4Ys,106
15
- awslabs_git_repo_research_mcp_server-1.0.3.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
16
- awslabs_git_repo_research_mcp_server-1.0.3.dist-info/licenses/NOTICE,sha256=fnpchtUnC9htWDzn7WbOrBYePd9UUEYXytHe98AB34w,104
17
- awslabs_git_repo_research_mcp_server-1.0.3.dist-info/RECORD,,
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,,