GitHub / warm

Search Issues

Search issues + pull requests using GitHub search syntax. Returns matching issues with metadata; use get_issue for body content.

Quick Start

aweb inspect github.search_issues
aweb add github
aweb plan "use GitHub search issues in an agent workflow"
import Aweb, { Agent } from '@aweb/sdk';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const agent = new Agent({ tools: aweb.tools });

agent.add('github');

const plan = await agent.plan('Use GitHub for this workflow');
const tool = await aweb.tools.inspect('github.search_issues');

console.log(plan.nextAction);
console.log(tool.inputSchema);

Tool Card

Tool idgithub.search_issues
ProviderGitHub (github)
Tool namesearch_issues
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Cost0

Requirements and Governance

Authoauth_2_1_pkce
Credentialsetup_required
Workspacerequired
Approvalnone
RiskREAD
Permissionsrepo, read:org, workflow, read
Credential setup/api/mcp-warehouse/credentials/github/init

Schemas

{
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "description": "GitHub issue/PR search query (e.g., \"is:open is:pr author:username repo:owner/name\")."
    },
    "per_page": {
      "type": "integer",
      "description": "Results per page (default 30, max 100)"
    },
    "page": {
      "type": "integer",
      "description": "Page number (1-based)"
    },
    "sort": {
      "type": "string",
      "enum": [
        "comments",
        "reactions",
        "created",
        "updated"
      ],
      "description": "Sort order"
    },
    "order": {
      "type": "string",
      "enum": [
        "asc",
        "desc"
      ],
      "description": "Sort direction"
    }
  },
  "required": [
    "q"
  ],
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use GitHub search issues in an agent workflow.",
    "args": {
      "q": "<q>",
      "per_page": "<per_page>",
      "page": "<page>",
      "sort": "<sort>"
    }
  }
]
Back to MCP Tool Cards