AI Product manager SERIES
Key Concepts of AI Agents for Product Managers
Here, we will break down the key concepts of modern AI: LLMs/models, tools/MCP, harnesses, and agents.
{
"name": "jira_search_issues",
"description": "Search Jira issues using JQL.",
"inputSchema": {
"type": "object",
"properties": {
"jql": {
"type": "string",
"description": "JQL query, e.g. 'project = SEARCH AND status = \"In Progress\" ORDER BY updated DESC'"
},
"max_results": {
"type": "integer",
"description": "Maximum number of issues to return (default 25, max 100).",
"default": 25
}
}
}