UNPKG

mcp-server-linear

Version:

An MCP server for interacting with Linear's API, providing tools for managing issues, projects, and teams

12 lines (11 loc) 163 B
/** * User operation types */ export interface User { id: string; name: string; email: string; } export interface UserResponse { viewer: User; }