iiRecord
Agentic AI Atlas · GitHub: List Issues
tool-descriptor:github.list-issuesa5c.ai
II.
ToolDescriptor JSON

tool-descriptor:github.list-issues

Structured · live

GitHub: List Issues json

Inspect the normalized record payload exactly as the atlas UI reads it.

File · extensions/tool-descriptors/github-mcp-tools.yamlCluster · extensions
Record JSON
{
  "id": "tool-descriptor:github.list-issues",
  "_kind": "ToolDescriptor",
  "_file": "extensions/tool-descriptors/github-mcp-tools.yaml",
  "_cluster": "extensions",
  "attributes": {
    "schema": "{}",
    "displayName": "GitHub: List Issues",
    "description": "List issues for a repository, with state and label filters.",
    "inputSchema": {
      "type": "object",
      "required": [
        "owner",
        "repo"
      ],
      "properties": {
        "owner": {
          "type": "string"
        },
        "repo": {
          "type": "string"
        },
        "state": {
          "type": "string",
          "enum": [
            "open",
            "closed",
            "all"
          ]
        },
        "labels": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "outputSchema": {
      "type": "object",
      "properties": {
        "issues": {
          "type": "array"
        }
      }
    },
    "mode": "normal",
    "streamable": false,
    "timeoutMs": 30000
  },
  "outgoingEdges": [
    {
      "from": "tool-descriptor:github.list-issues",
      "to": "tool-server:mcp-github",
      "kind": "contained_in_plugin",
      "attributes": {}
    }
  ],
  "incomingEdges": [
    {
      "from": "tool-server:mcp-github",
      "to": "tool-descriptor:github.list-issues",
      "kind": "contains_tool_descriptor",
      "attributes": {}
    },
    {
      "from": "tool-server:github-issues-mcp",
      "to": "tool-descriptor:github.list-issues",
      "kind": "contains_tool_descriptor",
      "attributes": {}
    }
  ]
}