
mcp server linear
**摘要:** mcp-server-linear 是一个用于通过 MCP client 管理 Linear 问题的 TypeScript 服务器,支持搜索、创建、更新和自动化。编译为独立可执行文件。
Repository Info
About This Server
**摘要:** mcp-server-linear 是一个用于通过 MCP client 管理 Linear 问题的 TypeScript 服务器,支持搜索、创建、更新和自动化。编译为独立可执行文件。
Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.
Documentation
mcp-server-linear
This is a MCP server that defines tools for interacting with Linear via an MCP client.
Current Tools
linear-search-issues: Search for issues in Linear
Future Tools
linear-create-issue: Create an issue in Linearlinear-update-issue: Update an issue in Linearlinear-get-issue: Get an issue in Linearlinear-get-project-issues: Get all issues in a project in Linearlinear-add-comment: Add a comment to an issue in Linearlinear-create-project: Create a project in Linearlinear-update-project: Update a project in Linear
Future Resources
linear-issue:///{issueId}- View individual issue detailslinear-project:///{projectId}- View project detailslinear-cycle:///{cycleId}- View cycle details (defaults to current cycle)linear-team:///{teamId}/issues- View team issueslinear-user:///{userId}/assigned- View user's assigned issueslinear-organization:- View organization info
Bun-preferred
This project uses Bun and can be run directly from Bun without transpiling (which is how I use it). To run it with Bun, you can use the following command:
bun run index.ts
That said, you can run it with Node if you prefer. To run it with Node, you can use the following command:
node build/index.js
Standalone Executable
Bun projects can be compiled into standalone executable. This allows you to run the server without having to install Bun (theoretically). To compile the project into a standalone executable, you can use the following command:
bun build:standalone
You may need to change the build target depending on the machine you are building for. See Bun docs for more details.
Adding to your MCP client via JSON
To add this server to your MCP client, you can use the following JSON configuration:
Bun Runtime
"linear": {
"command": "bun",
"args": [
"run",
"/path/to/linear-mcp-server/index.ts"
],
"env": {
"LINEAR_API_KEY": "lin_api_ABCD"
}
}
Node Runtime
"linear": {
"command": "node",
"args": [
"/path/to/linear-mcp-server/build/index/js"
],
"env": {
"LINEAR_API_KEY": "lin_api_ABCD"
}
}
Standalone Executable
"linear": {
"command": "/path/to/linear-mcp-server/standalone-linear-mcp-server",
"args": [],
"env": {
"LINEAR_API_KEY": "lin_api_ABCD"
}
}
Credits
This project was inspired by jerhadf/linear-mcp-server. I and others had trouble getting it to work, which prompted me to create my own implementation. The list of tools and resources seemed worth keeping.
License
MIT
Quick Start
Clone the repository
git clone https://github.com/floodfx/mcp-server-linearInstall dependencies
cd mcp-server-linear
npm installFollow the documentation
Check the repository's README.md file for specific installation and usage instructions.
Repository Details
Recommended MCP Servers
Discord MCP
Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.
Knit MCP
Connect AI agents to 200+ SaaS applications and automate workflows.
Apify MCP Server
Deploy and interact with Apify actors for web scraping and data extraction.
BrowserStack MCP
BrowserStack MCP Server for automated testing across multiple browsers.
Zapier MCP
A Zapier server that provides automation capabilities for various apps.