search_repositories
Enables efficient search of GitHub repositories by query and language, streamlining access to codebases on the Multi-MCPs server.
Instructions
Search GitHub repositories
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"type": "string"
},
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}