Search K4G Applications
k4g_search_applicationsSearch startup applications by text, sector, stage, or impact score to locate candidates for review.
Instructions
Search the incubator application pipeline by text, sector, stage, or score.
This tool searches across all applications in the current cycle. It does NOT modify any data - use k4g_flag_for_review for that.
Args:
query (string, optional): matches against org name, founder name, one-liner
food_sector (string, optional): e.g. "alt-protein", "fermentation", "policy"
stage (enum, optional): pipeline stage to filter on
min_impact_score (number, optional): 1-10, minimum impact score
limit (number, optional): max results, default 20
Returns JSON with: { total, count, applications: [ { id, org_name, founder_name, country, food_sector, one_liner, stage, review_status, assigned_reviewer, impact_score, feasibility_score, team_score } ] }
Examples:
"Which alt-protein applications scored 7 or higher on impact?" -> food_sector="alt-protein", min_impact_score=7
"Find anything from Kenya" -> query="Kenya"
Don't use when: you already have the application ID (use k4g_get_application instead)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (default 20). | |
| query | No | Free-text match against org name, founder name, or one-liner. Omit to skip text filtering. | |
| stage | No | Filter by pipeline stage. | |
| food_sector | No | Filter by sector, e.g. 'alt-protein', 'fermentation', 'policy', 'packaging', 'education'. | |
| min_impact_score | No | Only return applications with impact_score >= this value. |