list_teams
Retrieve a detailed list of Linear teams, including members and projects, to gain a comprehensive overview of your workspace structure. Filter and limit results for precise insights.
Instructions
List Linear teams with details about their members, projects, and issues. Use this to get a high-level view of all teams in your Linear workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
debug | No | Debug mode to show extra diagnostics | |
includeMembers | No | Include sparse member listing for each team | |
includeProjects | No | Include sparse project listing for each team | |
limit | No | Maximum number of teams to return | |
nameFilter | No | Filter teams by name (partial match) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"debug": {
"default": false,
"description": "Debug mode to show extra diagnostics",
"type": "boolean"
},
"includeMembers": {
"default": true,
"description": "Include sparse member listing for each team",
"type": "boolean"
},
"includeProjects": {
"default": true,
"description": "Include sparse project listing for each team",
"type": "boolean"
},
"limit": {
"default": 25,
"description": "Maximum number of teams to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"nameFilter": {
"description": "Filter teams by name (partial match)",
"type": "string"
}
},
"type": "object"
}