Skip to main content
Glama

find_bounties

Search GitHub for real bounty opportunities to earn money from coding tasks. Filters out scams and lets you set minimum repository quality thresholds.

Instructions

Search GitHub for real, paying bounty opportunities. Filters out known scams.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoSearch query (default: bounty label issues)label:bounty
min_starsNoMinimum repo stars to consider

Implementation Reference

  • The handler logic for the "find_bounties" tool, which searches GitHub, filters out scams from the local database, and returns the result.
    case "find_bounties": {
      const query = (args as any).query || "label:bounty";
      const results = ghSearch(`"${query}" --state open --sort created`);
      const db = loadDB();
      const filtered = results.filter((r: any) => {
        const repo = r.repository?.nameWithOwner || "";
        return !db.scam_list.includes(repo);
      });
      return {
        content: [{
          type: "text",
          text: `Found ${filtered.length} bounty opportunities (${results.length - filtered.length} scams filtered):\n\n${filtered.map((r: any) => `- ${r.repository?.nameWithOwner}: ${r.title}\n  ${r.url}`).join("\n\n")}`,
        }],
      };
    }
  • The registration and schema definition for the "find_bounties" tool.
    {
      name: "find_bounties",
      description: "Search GitHub for real, paying bounty opportunities. Filters out known scams.",
      inputSchema: {
        type: "object" as const,
        properties: {
          query: { type: "string", description: "Search query (default: bounty label issues)", default: "label:bounty" },
          min_stars: { type: "number", description: "Minimum repo stars to consider", default: 10 },
        },
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ElromEvedElElyon/revenue-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server