- Home
- MCP servers
- Linear
Linear
- typescript
1
GitHub Stars
typescript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"floodfx-mcp-server-linear": {
"command": "bun",
"args": [
"run",
"/path/to/linear-mcp-server/index.ts"
],
"env": {
"LINEAR_API_KEY": "lin_api_ABCD"
}
}
}
}This MCP server enables your MCP client to interact with Linear by exposing tools that search and manage Linear issues and projects. It provides practical, pluggable endpoints you can consume from your client to perform linear-related actions without building the integration from scratch.
How to use
You connect your MCP client to Linear through the available MCP endpoints. Start by choosing a runtime configuration that fits your environment, then reference the listed tools to search issues and perform future actions as they become available. Use the provided JSON configurations to register the server with your MCP client, and supply your API key to authorize requests.
How to install
Prerequisites: ensure you have a modern Node.js or Bun runtime installed on your machine. You will also need access to a Linear API key for authentication.
Install or prepare the MCP server by following the runtime-specific commands below. Each path runs the server in a local MCP context.
Configuration and runtime options
You can run the MCP server using Bun, Node, or as a standalone executable. Use the exact commands shown to start the server in each runtime.
Available tools
linear-search-issues
Search for issues in Linear via the MCP client.
linear-create-issue
Create a new issue in Linear (planned feature).
linear-update-issue
Update an existing Linear issue (planned feature).
linear-get-issue
Retrieve details for a Linear issue (planned feature).
linear-get-project-issues
Get all issues within a Linear project (planned feature).
linear-add-comment
Add a comment to a Linear issue (planned feature).
linear-create-project
Create a new Linear project (planned feature).
linear-update-project
Update a Linear project (planned feature).