linear_list_teams
Pack: linear · Endpoint: https://gateway.pipeworx.io/linear/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/linear_list_teams for the schema, then POST the same URL with its arguments for the data.
List all teams in your Linear workspace. Returns team ID, name, key, and description.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/linear/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"linear_list_teams","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('linear_list_teams', {});
Response shape
Always returns: teams
| Field | Type | Description |
|---|---|---|
teams | array | List of teams in workspace |
Full JSON Schema
{
"type": "object",
"properties": {
"teams": {
"type": "array",
"description": "List of teams in workspace",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Team ID"
},
"name": {
"type": "string",
"description": "Team name"
},
"key": {
"type": "string",
"description": "Team key (prefix for issues)"
},
"description": {
"type": "string",
"description": "Team description"
}
}
}
}
},
"required": [
"teams"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"linear": {
"url": "https://gateway.pipeworx.io/linear/mcp"
}
}
}
See Getting Started for client-specific install steps.