8/21 demo: Building component libraries from Figma with AI

What are best AI tools? Take the State of AI survey

Builder logo
builder.io
Contact sales
Builder logo
builder.io

Blog

Home

Resources

Blog

Forum

Github

Login

Signup

×

Visual CMS

Drag-and-drop visual editor and headless CMS for any tech stack

Theme Studio for Shopify

Build and optimize your Shopify-hosted storefront, no coding required

Resources

Blog

Get StartedLogin

☰

‹ Back to blog

AI

How to set up and use the Linear MCP server

August 5, 2025

Written By Matt Abrams

You're building a feature. Your AI coding tool needs to know the feature’s requirements and scope, so you copy-paste everything from your project management platform, like Jira, Linear, or GitHub Projects. Later, you switch back to that platform to update the issue status. Then back to your editor. Then back to the issue to check dependencies. Then back to your editor. Sound familiar?

What is the Model Context Protocol (MCP)

The Model Context Protocol (MCP) offers a solution to this context-switching problem. MCP is an open standard that lets AI tools connect directly to your other applications and services.

Think of it this way: instead of manually feeding context to your AI agent, an MCP bridges the AI with a specific external tool. Now your AI agent can communicate directly with that resource’s API.

Today, official MCP servers are available for popular tools like Figma, Linear, Supabase, and more.

The Linear MCP is the official MCP server for Linear's project management platform. It gives AI tools direct access to your Linear workspace data, such as issues, projects, teams, comments, and workflow states. In the video above, Fusion uses the Linear MCP to grab the requirements for a new feature, build it, and then update the Linear issue with the completed status.

You can ask the Linear MCP things like "What issues are assigned to me this sprint?" or "Show me blocked tickets in the frontend project," and get live data back. The Linear MCP can also write data. Your AI agent can now create issues, update statuses, and add comments on your behalf.

The Linear team built this server specifically to bridge the gap between project management and AI-powered development. Instead of treating Linear as a separate tool you check occasionally, it becomes part of your AI's working context.

The Linear MCP fixes several time-wasting patterns that slow down development teams:

Copy-paste friction adds up. Need to reference an issue number? Copy it. Are the requirements unclear? Paste the acceptance criteria. Want to update the status? More switching. Every manual transfer is a small tax on your productivity.

Context switching kills momentum. You're deep in code, hit a blocker, and need to check Linear for details. Tab switch, log in, navigate, find the issue, read comments, switch back. Your flow is broken, and you've lost 2-3 minutes of mental context.

Stale information leads to wrong decisions. You tell your AI about a bug fix from last week, not knowing someone already resolved it this morning. Or you're working on a feature that got deprioritized yesterday. Without live data, you're operating on outdated assumptions.

The Linear MCP turns these friction points into non-issues. Your AI tool becomes project-aware by default.

The installation process varies by platform, but the core concept is the same: you're connecting to Linear's official remote MCP server at https://mcp.linear.app/sse.

Fusion includes the Linear MCP, so it works out of the box.

  1. Navigate to the MCP servers tab in Fusion
  2. Press the Connect button inside the Linear tile and authorize access to your workspace.
  1. Open Claude Desktop settings
  2. Navigate to the Connectors tab
  3. Select Linear from the available connectors
  4. Follow the authentication prompts to connect your Linear workspace

For detailed setup instructions, see Linear's official MCP server documentation.

Cursor offers multiple setup methods. The quickest way is to select Linear from their list of trusted MCP servers.

You can also add the configuration manually:

  1. Press Ctrl/Cmd + Shift + P to open the command palette
  2. Type "Open MCP Settings" and select it
  3. Enter the Linear server configuration into the file:
{
  "mcpServers": {
    "Linear": {
      "url": "<https://mcp.linear.app/sse>"
    }
  }
}

Refer to Cursor's MCP documentation and Linear's Cursor integration guide for complete setup instructions.

VS Code 1.102+ includes native MCP support with several installation options:

  • Direct installation: Visit the curated MCP server list and press Install to automatically add servers
  • Workspace settings: Add .vscode/mcp.json to share configurations with your team
  • User settings: Configure globally via MCP: Open User Configuration
  • Automatic discovery: Enable autodiscovery to detect MCP servers from other tools.

Use this configuration format in .vscode/mcp.json:

{
  "context_servers": {
    "linear": {
      "command": {
        "path": "npx",
        "args": ["-y", "mcp-remote", "<https://mcp.linear.app/sse>"],
        "env": {}
      },
      "settings": {}
    }
  }
}

You can view installed servers using the MCP: Show Installed Servers command. See VS Code's MCP documentation for details.

The Linear MCP server uses OAuth authentication, which requires no API key management or environment variables. When you first use the connection, the authentication happens through your browser.

Once authentication completes, test the connection with some basic Linear queries. Here are a few:

  • "Show me my assigned issues in Linear"
  • "What issues are in progress in our current sprint?"
  • "List all open bugs in the frontend project"

Expected Response:

If the integration works, your AI tool will return real data from your Linear workspace. You should see actual issue titles, assignees, statuses, and project information.

What You Get Access To:

The Linear MCP server can perform all sorts of actions. Here are some common tasks and related prompts:

  • Issue search and filtering. "Find and summarize issues with the label frontend that haven't been updated in the last week."
  • Issue creation and updates. "Create a new issue for the login bug. Give it high priority and assign it to the backend team." "Move this issue to In Review and add the label needs-testing."
  • Status and label management. "Change all issues in the Ready for QA column to In Testing status." "Add the urgent label to all P0 issues in the mobile project."
  • Documentation access. "Pull up the project requirements document for the new checkout flow."
  • Sprint and project queries. "What issues are planned for the current sprint?" "Show me the progress on the Q4 roadmap project and which issues are at risk."

Fusion takes a unique approach to the Linear MCP. Instead of treating Linear as a separate data source, Fusion integrates project management directly into visual development workflows.

What works well: Easiest to set up and includes a visual development platform that other AI solutions can't match. While Claude Desktop, Cursor, and VS Code generate code, Fusion's visual editor also lets you see and modify UI components in real-time as the AI builds them. Their no-code layer unlocks development for PMs and designers.

With Fusion, you can share a Linear ticket URL and watch the AI: write code to resolve the issue, ship a PR to GitHub with a fix, and then update the Linear ticket. You can also visually edit, style, and refine your UIs along the way; no switching between code and preview modes.

The editor understands your design system and lets you drag, drop, and modify components while maintaining clean code output. Business context from Linear flows directly into visual development decisions, creating a smooth workflow from project requirements to pixel-perfect interfaces to production deployment.

Limitations: No desktop client (yet), although there is a strong VS Code extension. Fusion’s visual development platform won’t work with non-JS web frameworks like Django or Rails (yet).

Claude Desktop offers a straightforward Linear MCP experience. Once configured, you can ask natural language questions about your Linear data and get immediate responses.

What works well: Direct conversation flow, complex queries across multiple projects, and detailed issue analysis. Claude excels at understanding context from your Linear workspace and providing thoughtful responses about project status and priorities.

Limitations: Claude Desktop is primarily a chat interface. While great for project insights and planning, it doesn't integrate with your actual development environment or provide visual project management capabilities.

Cursor brings the Linear MCP directly into your code editor, creating a more integrated development experience.

What works well: Inline Linear queries while coding, automatic issue reference in commits, and project-aware code suggestions. You can ask about blocking issues while looking at the actual code that needs changes.

Limitations: Cursor focuses on code generation and editing, so linear integration feels more like a helpful sidebar than a core workflow component. It is limited mainly to developers.

Windsurf positions itself as the first AI agent-powered IDE, and its Linear MCP integration reflects that philosophy. For complete setup instructions, see Linear's Windsurf integration documentation.

What works well: Windsurf treats the Linear MCP as part of its agent workflow. The AI can autonomously check linear issues, understand project context, and make development decisions based on current sprint priorities, creating a more proactive development experience.

Limitations: Still primarily code-focused. While Windsurf can understand Linear context better than traditional editors, it doesn't provide visual project management or team collaboration features beyond what Linear already offers.

VS Code's approach to Linear MCP varies depending on which AI extension you're using. The experience ranges from basic chat integration to more sophisticated workflow automation.

What works well: Familiar VS Code environment with your existing extensions and workflows. Linear MCP becomes another tool in your development toolkit rather than requiring a new platform.

Limitations: Fragmented experience across different AI extensions. Setup complexity increases when coordinating multiple extensions, and the Linear integration quality depends heavily on which AI extension you choose.

Try Fusion's Linear MCP integration to see how project management and visual development work together, or stick with your current AI platform and add Linear context to your existing workflow.

The context-switching days are over. The question now is how deeply you want to integrate your project management and development processes.

Share

Twitter
LinkedIn
Facebook
Share this blog
Copy icon
Twitter "X" icon
LinkedIn icon
Facebook icon

Visually edit your codebase with AI

Using simple prompts or Figma-like controls.

Try it nowGet a demo

Design to Code Automation

A pragmatic guide for engineering leaders and development teams

Access Now

Continue Reading
AI3 MIN
Introducing Usage-Based Agent Credits
August 7, 2025
AI4 MIN
Convert HTML to Design in Figma
August 6, 2025
AI8 MIN
Cursor + Figma MCP Server
July 30, 2025