Linear
A fast, modern project management tool built for developers to plan, track, and ship work with speed and simplicity.
https://api.linear.app
https://mcp.linear.app/mcp
Agent
const bundleup = new BundleUp('Zw7Lt7...');
const mcp = bundleup.mcp('conn_abc123').connect();
const tools = await mcp.listTools(); Proxy
const bundleup = new BundleUp('Zw7Lt7...');
const proxy = bundleup.proxy('conn_abc123');
const response = await proxy.get('/[...]');Unified MCP Tools
me
Get the Linear account the connection is authenticated as.
tickets
Retrieve a list of tickets from Linear.
ticket
Retrieve a single issue from Linear by ID.
projects
Retrieve a list of projects from Linear.
Unified API Endpoints
/me
Retrieve the Linear account this connection is authenticated as.
/ticketing/tickets
Retrieve a list of tickets from Linear.
/ticketing/tickets/{id}
Retrieve a single issue from Linear by ID.
/ticketing/projects
Retrieve a list of projects from Linear.
Edge Cases & Special Considerations
- GraphQL API: Uses GraphQL for API requests instead of REST.
