Files
github--github-mcp-server/pkg/github/__toolsnaps__/get_project.snap
JoannaaKL abf7c478ac Add tools for Projects V2 (#1114)
* Add get_project tool

* Remove pagination for now

* Fix url formatting

* Minor tweaks

* Add list project fields tool

* Wording
2025-09-26 11:36:35 +02:00

34 lines
805 B
Plaintext

{
"annotations": {
"title": "Get project",
"readOnlyHint": true
},
"description": "Get Project for a user or org",
"inputSchema": {
"properties": {
"owner": {
"description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive.",
"type": "string"
},
"owner_type": {
"description": "Owner type",
"enum": [
"user",
"org"
],
"type": "string"
},
"project_number": {
"description": "The project's number",
"type": "number"
}
},
"required": [
"project_number",
"owner_type",
"owner"
],
"type": "object"
},
"name": "get_project"
}