gh_list_issues
Pack: github_private · Endpoint: https://gateway.pipeworx.io/github_private/mcp
List issues in a repository. Specify owner and repo name (e.g., owner=‘octocat’, repo=‘Hello-World’). Returns titles, numbers, status, assignees, and labels.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
owner | string | yes | Repository owner |
repo | string | yes | Repository name |
state | string | no | Filter: open, closed, all (default: open) |
per_page | number | no | Results per page (max 100) |
Example call
Arguments
{
"owner": "octocat",
"repo": "Hello-World",
"state": "open"
}
curl
curl -X POST https://gateway.pipeworx.io/github_private/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gh_list_issues","arguments":{"owner":"octocat","repo":"Hello-World","state":"open"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gh_list_issues', {
"owner": "octocat",
"repo": "Hello-World",
"state": "open"
});
More examples
{
"owner": "octocat",
"repo": "Hello-World",
"state": "all",
"per_page": 50
}
Response shape
Full JSON Schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Issue ID"
},
"number": {
"type": "number",
"description": "Issue number"
},
"title": {
"type": "string",
"description": "Issue title"
},
"state": {
"type": "string",
"description": "Issue state (open or closed)"
},
"body": {
"type": [
"string",
"null"
],
"description": "Issue description"
},
"user": {
"type": "object",
"properties": {
"login": {
"type": "string",
"description": "User login"
},
"id": {
"type": "number",
"description": "User ID"
}
}
},
"assignees": {
"type": "array",
"items": {
"type": "object",
"properties": {
"login": {
"type": "string",
"description": "Assignee login"
},
"id": {
"type": "number",
"description": "Assignee ID"
}
}
},
"description": "List of assignees"
},
"labels": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Label name"
},
"color": {
"type": "string",
"description": "Label color (hex)"
}
}
},
"description": "List of labels"
},
"created_at": {
"type": "string",
"description": "ISO timestamp of creation"
},
"updated_at": {
"type": "string",
"description": "ISO timestamp of last update"
},
"html_url": {
"type": "string",
"description": "Issue web URL"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"github_private": {
"url": "https://gateway.pipeworx.io/github_private/mcp"
}
}
}
See Getting Started for client-specific install steps.