Linear MCP Server
An open-source Model Context Protocol server that enables interaction with the Linear API to manage issues, teams, and comments. It allows users to create, update, and search for issues while accessing workspace users and workflow states.
README
š Linear-MCP-for-Gemini_CLI
A powerful, open-source Model Context Protocol (MCP) server specifically built to bridge Gemini CLI directly to your Linear workspace. Manage issues, teams, and workflows seamlessly through natural language, right from your terminal.
š Features
- š Search & Discovery: Find issues across your entire workspace directly from Gemini CLI.
- š Issue Management: Fetch, create, and update issues (status, priority, assignee, etc.) effortlessly.
- š¬ Collaboration: Add comments to issues without leaving your terminal.
- š¢ Workspace Insights: List teams, users, and workflow states to provide full context to Gemini.
- ā” Real-time Integration: Built on the Model Context Protocol for low-latency, secure communication.
š Prerequisites
Before you begin, ensure you have the following installed:
- Node.js: Version 18.0.0 or higher.
- Gemini CLI: Installed and configured on your machine.
- Linear Account: With access to generate an API key.
š Complete Gemini CLI Integration Guide
This server is written in TypeScript. Because Gemini CLI requires a standard JavaScript executable to run MCP servers, we first need to download and "build" the project.
Follow these 4 steps to get everything connected.
Step 1: Download & Build the Server
-
Clone the repository to your machine:
git clone https://github.com/tenx-studio/Linear-MCP.git cd linear-mcp-open-source -
Install the required packages:
npm install -
Compile the code:
npm run build(Why do this? This command translates the TypeScript code into a
dist/index.jsfile, which is the exact file Gemini CLI will use to communicate with Linear).
Step 2: Get your Linear API Key
- Navigate to Settings > API > Personal API keys in your Linear workspace.
- Click New API key and give it a descriptive name (e.g., "Gemini CLI").
- Copy the key (you will need it for the final step).
Step 3: Connect to Gemini CLI (The Only Setup You Need)
Now we tell Gemini CLI where to find the built server and securely provide it with your API key. You do this by editing the Gemini CLI settings file.
-
Locate your Settings File: Open your file explorer or terminal and find the
.geminifolder in your user's home directory:- Windows:
%USERPROFILE%\.gemini\settings.json(e.g.,C:\Users\YourName\.gemini\settings.json) - Mac/Linux:
~/.gemini/settings.json(Note: If the.geminifolder orsettings.jsonfile does not exist yet, simply create them).
- Windows:
-
Add the Configuration: Open
settings.jsonin any text editor (like VS Code, Notepad, or TextEdit) and paste the followingmcpblock. If your file already has content, just add the"mcp"section inside the main{}brackets:
{
"mcp": {
"servers": {
"linear": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/linear-mcp-open-source/dist/index.js"],
"env": {
"LINEAR_API_KEY": "lin_api_your_key_here"
}
}
}
}
}
ā ļø Crucial Adjustments:
args: You MUST replace/ABSOLUTE/PATH/TO/...with the actual, full path on your computer where you cloned this repository. (e.g.,"D:/Projects/linear-mcp-open-source/dist/index.js").LINEAR_API_KEY: Replacelin_api_your_key_herewith the exact API key you copied in Step 2.
Step 4: Start Chatting!
Close and reopen your terminal to restart your Gemini CLI session. The integration is now active!
Try asking Gemini CLI things like:
"List my Linear teams." "Find the issue about the login bug." "Create a new high priority issue in the Engineering team to update the README."
š¤ Auto-Connection Magic (How it Works)
You might be wondering: "Do I need to run npm start every time I want to use this? Do I need to manually set up a server connection?"
No! You do not have to do anything extra.
Adding the configuration block in Step 3 is the only setup required. Here is exactly what happens under the hood:
- Zero-Touch Startup: Because you added the configuration to your
settings.json, Gemini CLI natively acts as the host. - Background Execution: Every time you start a new Gemini CLI chat, it automatically spins up this Linear MCP server in a hidden background process.
- Secure Handshake: Gemini CLI reads the
"LINEAR_API_KEY"from your settings and securely injects it directly into the server. - Clean Shutdown: When you close Gemini CLI, the background server is automatically terminated.
You just configure it once in your settings, and the Model Context Protocol handles the entire lifecycle for you automatically!
š¤ Contributing
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
š License
This project is licensed under the ISC License.
Built with ā¤ļø for the AI Developer Community.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.