list_projects
Generate and filter GitHub project lists by status using a precise input schema, enabling efficient project management within the mcp-github-project-manager server.
Instructions
List GitHub projects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
status | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
}