MCPcopy Create free account
hub / github.com/agenticsorg/edge-agents / GitHubRepoRequest

Class GitHubRepoRequest

scripts/agents/devops/src/github/github_models.py:13–24  ·  view source on GitHub ↗

Request model for GitHub repository operations.

Source from the content-addressed store, hash-verified

11
12
13class GitHubRepoRequest(BaseModel):
14 """
15 Request model for GitHub repository operations.
16 """
17
18 owner: str = Field(
19 description="Owner (organization or user) of the repository"
20 )
21
22 repo: str = Field(
23 description="Name of the repository"
24 )
25
26
27class GitHubIssueRequest(BaseModel):

Callers 1

test_get_repositoryFunction · 0.90

Calls 1

FieldFunction · 0.50

Tested by 1

test_get_repositoryFunction · 0.72