Skip to main content
Glama

πŸš€ Linear-MCP-for-Gemini_CLI

License: ISC Node.js Version Model Context Protocol

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.


Related MCP server: Linear MCP Server

πŸ“‹ 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

  1. Clone the repository to your machine:

    git clone https://github.com/tenx-studio/Linear-MCP.git
    cd linear-mcp-open-source
  2. Install the required packages:

    npm install
  3. Compile the code:

    npm run build

    (Why do this? This command translates the TypeScript code into a dist/index.js file, which is the exact file Gemini CLI will use to communicate with Linear).

Step 2: Get your Linear API Key

  1. Navigate to Settings > API > Personal API keys in your Linear workspace.

  2. Click New API key and give it a descriptive name (e.g., "Gemini CLI").

  3. 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.

  1. Locate your Settings File: Open your file explorer or terminal and find the .gemini folder 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 .gemini folder or settings.json file does not exist yet, simply create them).

  2. Add the Configuration: Open settings.json in any text editor (like VS Code, Notepad, or TextEdit) and paste the following mcp block. 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: Replace lin_api_your_key_here with 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:

  1. Zero-Touch Startup: Because you added the configuration to your settings.json, Gemini CLI natively acts as the host.

  2. Background Execution: Every time you start a new Gemini CLI chat, it automatically spins up this Linear MCP server in a hidden background process.

  3. Secure Handshake: Gemini CLI reads the "LINEAR_API_KEY" from your settings and securely injects it directly into the server.

  4. 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.

  1. Fork the Project

  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)

  3. Commit your Changes (git commit -m 'Add some AmazingFeature')

  4. Push to the Branch (git push origin feature/AmazingFeature)

  5. Open a Pull Request


πŸ“„ License

This project is licensed under the ISC License.


Built with ❀️ for the AI Developer Community.

Available Tools

8 tools
linear_add_commentC

Add a comment to an issue

ParametersJSON Schema
NameRequiredDescriptionDefault
issueIdYesThe ID or key of the issue
bodyYesThe content of the comment

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a write operation ('Add'), implying mutation, but doesn't cover important aspects like required permissions, whether the action is reversible, rate limits, or what happens on success/failure. This leaves significant gaps for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a simple tool and front-loads the essential information without unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't address behavioral aspects like permissions, side effects, or response format, which are critical for an agent to use this tool correctly in context with its siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with both parameters (issueId and body) clearly documented in the schema. The description doesn't add any meaningful semantic context beyond what the schema already provides (e.g., format examples, constraints), so it meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Add a comment') and the target resource ('to an issue'), providing a specific verb+resource combination. However, it doesn't differentiate this tool from its siblings (like linear_update_issue which might also handle comments), so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing issue), exclusions, or how it differs from sibling tools like linear_update_issue that might also modify issues.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linear_create_issueC

Create a new issue in a team

ParametersJSON Schema
NameRequiredDescriptionDefault
teamIdYesThe ID of the team to create the issue in
titleYesThe title of the issue
descriptionNoThe description of the issue

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states this creates a new issue, implying a write operation, but doesn't mention permission requirements, whether the creation is reversible, rate limits, or what happens on success/failure. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized for a basic creation tool and front-loads the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given this is a mutation tool (creating issues) with no annotations and no output schema, the description is insufficient. It doesn't explain what happens after creationβ€”whether it returns the new issue ID, success status, or error details. For a tool that modifies system state, more behavioral context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with clear documentation for all three parameters (teamId, title, description). The description doesn't add any parameter-specific information beyond what the schema already provides, such as format examples or constraints. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create a new issue') and the resource ('in a team'), making the purpose immediately understandable. However, it doesn't differentiate this from sibling tools like linear_update_issue or linear_search_issues, which would require more specific language about creation versus modification or retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites like needing teamId from linear_get_teams, nor does it contrast with linear_update_issue for modifying existing issues or linear_search_issues for finding issues. This leaves the agent without context for tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linear_get_issuesC

Get issues from a specific team

ParametersJSON Schema
NameRequiredDescriptionDefault
teamKeyNoThe key of the team (e.g., ENG, DES)
limitNoMaximum number of issues to return

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but only states the basic action without disclosing behavioral traits. It doesn't mention permissions needed, rate limits, pagination, sorting, what fields are returned, or whether it's read-only (implied but not explicit). This leaves significant gaps for agent understanding.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It's front-loaded with the core purpose, though it could be more structured with additional context. It earns high marks for brevity but loses a point for under-specification.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a mutation-heavy sibling set (e.g., linear_create_issue, linear_update_issue), the description is incomplete. It doesn't address key contextual aspects like return format, error handling, or how this read tool fits among write operations, leaving the agent with insufficient information for reliable use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters (teamKey and limit) adequately. The description adds no additional meaning beyond what the schema provides, such as examples of team keys or context for limit usage, meeting the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Get issues from a specific team' which provides a clear verb ('Get') and resource ('issues'), but it's vague about scope and doesn't distinguish from sibling tools like 'linear_search_issues' or 'linear_get_teams'. It doesn't specify whether this retrieves all issues, recent issues, or filtered issues beyond team.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like 'linear_search_issues' or 'linear_get_teams'. The description implies team-based retrieval but doesn't mention prerequisites, exclusions, or comparative contexts with other issue-related tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linear_get_teamsC

List all teams in the workspace

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states it's a list operation, implying read-only behavior, but doesn't cover aspects like pagination (implied by the 'limit' parameter in schema), rate limits, authentication needs, or what the output looks like. This is a significant gap for a tool with undocumented parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero waste. It's front-loaded with the core purpose, making it efficient and easy to parse, though this brevity contributes to gaps in other dimensions.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 parameter, no output schema, no annotations), the description is incomplete. It lacks parameter details, usage context, and output information, making it inadequate for an agent to fully understand how to invoke and interpret results from this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 1 parameter with 0% description coverage, and the tool description provides no information about parameters. It doesn't mention the 'limit' parameter at all, leaving it completely undocumented. This fails to compensate for the low schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List') and resource ('all teams in the workspace'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like linear_get_users or linear_get_workflow_states, which follow the same 'List all X' pattern, so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for team selection, or comparison to other tools like linear_get_users for user-related queries, leaving the agent to infer usage from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linear_get_usersC

List all users in the workspace

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal information. It states the action ('List all users') but doesn't describe return format (e.g., pagination, fields included), error conditions, rate limits, or authentication requirements. For a tool with zero annotation coverage, this is insufficient to inform the agent about how the tool behaves beyond its basic purpose.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that efficiently conveys the core action without unnecessary words. It is front-loaded with the essential information ('List all users in the workspace'), making it easy for an agent to parse quickly. There is no wasted language or redundant phrasing.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one optional parameter, no output schema, no annotations), the description is incomplete. It lacks details on return values (e.g., user object structure), error handling, and practical usage context. While concise, it doesn't provide enough information for an agent to confidently invoke the tool without additional assumptions or trial-and-error.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has one parameter ('limit') with 0% description coverage, and the tool description provides no information about parameters. The description doesn't mention the 'limit' parameter, its purpose (e.g., pagination control), or default value, leaving the agent to infer usage from the schema alone. With low schema coverage, the description fails to compensate by explaining parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('List') and resource ('all users in the workspace'), making the purpose immediately understandable. It distinguishes this from sibling tools like linear_create_issue or linear_update_issue by focusing on user retrieval rather than issue management. However, it doesn't explicitly differentiate from linear_get_teams or linear_get_workflow_states in terms of resource type specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication needs), compare it to sibling tools like linear_search_issues for filtered queries, or indicate scenarios where listing all users is appropriate. Without annotations or context signals about usage, this leaves the agent with minimal direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linear_get_workflow_statesC

Get workflow states for a specific team

ParametersJSON Schema
NameRequiredDescriptionDefault
teamIdYesThe ID of the team

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure but offers minimal information. It implies a read operation ('Get'), but doesn't specify permissions required, rate limits, pagination, error handling, or what the return format looks like (e.g., list of states with properties). This is inadequate for a tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. Every part earns its place, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations and no output schema, the description is incomplete. It doesn't explain what workflow states are, their structure, or how they relate to issues or teams. For a tool that likely returns structured data (states with names, IDs, colors), this leaves significant gaps for an agent to understand the tool's full context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the single parameter 'teamId' clearly documented in the schema. The description adds no additional parameter semantics beyond implying it's for a 'specific team,' which the schema already covers. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and resource ('workflow states for a specific team'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like linear_get_issues or linear_get_teams, which also retrieve data but for different resources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a team ID), exclusions, or comparisons to siblings like linear_get_issues (which might include state information). This leaves the agent with minimal context for tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linear_search_issuesC

Search for issues using a query

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe search query
limitNoMaximum number of results to return

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but discloses almost nothing beyond the basic action. It doesn't mention whether this is a read-only operation, what permissions are needed, how results are returned (format, pagination), rate limits, or error conditions. 'Search' implies read-only, but this isn't explicitly stated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste. It's appropriately sized for a simple search tool and front-loads the core action. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the search returns (e.g., issue objects, IDs), how results are structured, or any behavioral nuances. The agent lacks critical context to use this tool effectively beyond basic invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents both parameters (query and limit). The description adds no additional meaning about parameters beyond what's in the schema. Baseline 3 is appropriate when the schema does all the work.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Search for issues using a query' clearly states the verb (search) and resource (issues), but it's vague about scope and doesn't differentiate from sibling tools like 'linear_get_issues'. It provides basic purpose but lacks specificity about what kind of search this is (e.g., full-text, filtered, etc.).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'linear_get_issues' or other siblings. There's no mention of prerequisites, context, or exclusions. The agent must infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linear_update_issueC

Update an existing issue

ParametersJSON Schema
NameRequiredDescriptionDefault
issueIdYesThe ID or key (e.g., TEN-1) of the issue
titleNo
descriptionNo
stateIdNoThe ID of the workflow state (e.g., In Progress)
priorityNoPriority (0-4)
assigneeIdNoThe ID of the user to assign the issue to

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Update an existing issue' implies a mutation operation but doesn't specify what permissions are required, whether changes are reversible, what happens to fields not mentioned, or what the response looks like. For a mutation tool with zero annotation coverage, this is a significant gap in behavioral transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise at just three words, with zero wasted language. It's front-loaded with the essential action and resource, making it immediately understandable despite its brevity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 6 parameters, no annotations, and no output schema, the description is insufficiently complete. It doesn't explain what happens during updates, what fields can be modified, error conditions, or return values. The combination of complexity and lack of structured support requires more descriptive content than provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 67% (4 of 6 parameters have descriptions), which is moderate. The description itself adds no parameter information beyond what's in the schema. With schema doing most of the work, the baseline score of 3 is appropriate, though the description doesn't compensate for the 33% coverage gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Update an existing issue' clearly states the verb (update) and resource (issue), making the purpose immediately understandable. However, it doesn't differentiate this tool from potential alternatives like linear_create_issue or linear_search_issues, which would require more specific scope information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites (like needing an existing issue ID), when not to use it, or how it differs from sibling tools like linear_create_issue for new issues or linear_search_issues for finding issues.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

B3.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose targeting specific resources and actions in the Linear domain, such as creating issues, getting issues, adding comments, updating issues, searching issues, and retrieving teams, users, and workflow states. There is no ambiguity or overlap in functionality, making it easy for an agent to select the correct tool.

Naming Consistency5/5

All tool names follow a consistent 'linear_verb_noun' pattern with snake_case, such as linear_create_issue, linear_get_issues, and linear_update_issue. This predictability enhances readability and usability for agents, with no deviations in naming conventions.

Tool Count5/5

With 8 tools, the server is well-scoped for managing issues and related resources in Linear, covering core operations like CRUD for issues, commenting, searching, and retrieving teams, users, and states. Each tool earns its place without feeling excessive or insufficient for the domain.

Completeness4/5

The tool set provides strong coverage for issue management, including create, get, update, comment, and search, along with essential context tools for teams, users, and workflow states. A minor gap is the lack of delete operations for issues or other resources, but agents can work around this with updates or other methods.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.
    713
    348
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    A Model Context Protocol server that integrates with Linear, enabling AI assistants to create, update, search, and comment on issues for project management and issue tracking.
    5
    6
    Apache 2.0
  • F
    license
    B
    quality
    D
    maintenance
    A server that enables AI assistants to interact with Linear's project management tools through the Model Context Protocol, supporting features like searching, creating, and updating issues, adding comments, and retrieving user profiles and team information.
    9
    1
  • A
    license
    Not graded
    quality
    D
    maintenance
    A Model Context Protocol server implementation that enables AI assistants to interact with Linear project management systems, allowing them to create, retrieve, and modify data related to issues, projects, teams, and users.
    29
    3
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tenx-studio/Linear-MCP-for-Gemini_CLI'

If you have feedback or need assistance with the MCP directory API, please join our Discord server