awslabs.git-repo-research-mcp-server 1.0.0__py3-none-any.whl → 1.0.2__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.
- awslabs/git_repo_research_mcp_server/search.py +1 -1
- awslabs/git_repo_research_mcp_server/server.py +3 -3
- {awslabs_git_repo_research_mcp_server-1.0.0.dist-info → awslabs_git_repo_research_mcp_server-1.0.2.dist-info}/METADATA +3 -3
- {awslabs_git_repo_research_mcp_server-1.0.0.dist-info → awslabs_git_repo_research_mcp_server-1.0.2.dist-info}/RECORD +8 -8
- {awslabs_git_repo_research_mcp_server-1.0.0.dist-info → awslabs_git_repo_research_mcp_server-1.0.2.dist-info}/WHEEL +0 -0
- {awslabs_git_repo_research_mcp_server-1.0.0.dist-info → awslabs_git_repo_research_mcp_server-1.0.2.dist-info}/entry_points.txt +0 -0
- {awslabs_git_repo_research_mcp_server-1.0.0.dist-info → awslabs_git_repo_research_mcp_server-1.0.2.dist-info}/licenses/LICENSE +0 -0
- {awslabs_git_repo_research_mcp_server-1.0.0.dist-info → awslabs_git_repo_research_mcp_server-1.0.2.dist-info}/licenses/NOTICE +0 -0
|
@@ -210,7 +210,7 @@ class RepositorySearcher:
|
|
|
210
210
|
index_path = self.repository_indexer._get_index_path(repository_name)
|
|
211
211
|
|
|
212
212
|
# Load the index and chunk map
|
|
213
|
-
vector_store = self.repository_indexer.load_index_without_pickle(
|
|
213
|
+
vector_store = self.repository_indexer.load_index_without_pickle(index_path)
|
|
214
214
|
if vector_store is None:
|
|
215
215
|
logger.error(f'Index or chunk map not found for repository {repository_name}')
|
|
216
216
|
# Set repository_directory even if index is not found
|
|
@@ -75,7 +75,7 @@ Perform semantic search within an indexed repository.
|
|
|
75
75
|
### delete_research_repository
|
|
76
76
|
Delete an indexed repository.
|
|
77
77
|
|
|
78
|
-
###
|
|
78
|
+
### search_repositories_on_github
|
|
79
79
|
Search for GitHub repositories based on keywords, scoped to specific organizations.
|
|
80
80
|
|
|
81
81
|
### access_file
|
|
@@ -147,7 +147,7 @@ delete_research_repository(repository_name_or_path="repo_name")
|
|
|
147
147
|
|
|
148
148
|
### Searching for GitHub Repositories
|
|
149
149
|
```
|
|
150
|
-
|
|
150
|
+
search_repositories_on_github(
|
|
151
151
|
keywords=["serverless", "lambda"],
|
|
152
152
|
num_results=10
|
|
153
153
|
)
|
|
@@ -663,7 +663,7 @@ async def mcp_search_repository(
|
|
|
663
663
|
raise
|
|
664
664
|
|
|
665
665
|
|
|
666
|
-
@mcp.tool(name='
|
|
666
|
+
@mcp.tool(name='search_repositories_on_github')
|
|
667
667
|
async def mcp_search_github_repos(
|
|
668
668
|
ctx: Context,
|
|
669
669
|
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
|
+
Version: 1.0.2
|
|
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/
|
|
@@ -124,12 +124,12 @@ search_research_repository(
|
|
|
124
124
|
) -> Dict
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
-
###
|
|
127
|
+
### search_repositories_on_github
|
|
128
128
|
|
|
129
129
|
Searches for GitHub repositories based on keywords, scoped to AWS organizations.
|
|
130
130
|
|
|
131
131
|
```python
|
|
132
|
-
|
|
132
|
+
search_repositories_on_github(
|
|
133
133
|
keywords: List[str],
|
|
134
134
|
num_results: int = 5
|
|
135
135
|
) -> Dict
|
|
@@ -6,12 +6,12 @@ awslabs/git_repo_research_mcp_server/github_search.py,sha256=gLCTq3EV2ghS9FMbngo
|
|
|
6
6
|
awslabs/git_repo_research_mcp_server/indexer.py,sha256=AMSY3FLnLjRtNXdTELqI43yhcjXU8iBkuZMZcWOd3m4,30317
|
|
7
7
|
awslabs/git_repo_research_mcp_server/models.py,sha256=fb55x92k5xqseFHLGo2bJta5YioRuNPxicSn1Vm_yhE,12544
|
|
8
8
|
awslabs/git_repo_research_mcp_server/repository.py,sha256=6Tw2k2V3XxLE7Hqjc_o6LBiaYEbjLiBtn4HpTJ_tuAE,10605
|
|
9
|
-
awslabs/git_repo_research_mcp_server/search.py,sha256=
|
|
10
|
-
awslabs/git_repo_research_mcp_server/server.py,sha256=
|
|
9
|
+
awslabs/git_repo_research_mcp_server/search.py,sha256=WT8xcuwmEBExUcGaeexY0byvwvScydCg1RogvZTNB_A,13742
|
|
10
|
+
awslabs/git_repo_research_mcp_server/server.py,sha256=ZU7QIivXuBna2Ln6A51GR9srEyCys26np_g4YSb9DiA,34127
|
|
11
11
|
awslabs/git_repo_research_mcp_server/utils.py,sha256=SRFPvxRNPR3K41F1fQDRHdytF-86JczvXINTxjjGguI,15019
|
|
12
|
-
awslabs_git_repo_research_mcp_server-1.0.
|
|
13
|
-
awslabs_git_repo_research_mcp_server-1.0.
|
|
14
|
-
awslabs_git_repo_research_mcp_server-1.0.
|
|
15
|
-
awslabs_git_repo_research_mcp_server-1.0.
|
|
16
|
-
awslabs_git_repo_research_mcp_server-1.0.
|
|
17
|
-
awslabs_git_repo_research_mcp_server-1.0.
|
|
12
|
+
awslabs_git_repo_research_mcp_server-1.0.2.dist-info/METADATA,sha256=pMIhVS8ljXW9_nCD2rNpv7gb8j1LjFUWL4xLeFo8__M,6106
|
|
13
|
+
awslabs_git_repo_research_mcp_server-1.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
14
|
+
awslabs_git_repo_research_mcp_server-1.0.2.dist-info/entry_points.txt,sha256=jX-BkQM7l_OK8D_iq_B4ukRuChbKjA4P4Q0IMikM4Ys,106
|
|
15
|
+
awslabs_git_repo_research_mcp_server-1.0.2.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
16
|
+
awslabs_git_repo_research_mcp_server-1.0.2.dist-info/licenses/NOTICE,sha256=fnpchtUnC9htWDzn7WbOrBYePd9UUEYXytHe98AB34w,104
|
|
17
|
+
awslabs_git_repo_research_mcp_server-1.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|