linear_list_teams
Pack: linear · Endpoint: https://gateway.pipeworx.io/linear/mcp
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.