All integrations
Linear
Create, search and update Linear issues, projects and cycles.
Developer
Productivity
How an agent reaches it
- MCP
Official MCP server. The agent lists its tools and calls them.
- REST API
Always available. The agent calls the API directly with your credential attached.
- CLI
No official command-line tool.
How you authenticate
- OAuth
- API key
How agents reach it
- Base URL
- https://api.linear.app/graphql
- Pagination
- cursor
- MCP server
- https://mcp.linear.app/mcp
Common endpoints
| run any query | POST /graphql |
| list my issues | POST /graphql |
| create an issue | POST /graphql |
Worth knowing
- Linear's REST surface is GraphQL only. Every call is POST /graphql with a `query` body.
- Prefer the MCP server for ordinary issue work; it is far less error-prone than hand-written GraphQL.