Skip to main content
Glama

mcp-服务器-线性

这是一个 MCP 服务器,它定义了通过 MCP 客户端与 Linear 交互的工具。

当前工具

  • linear-search-issues :线性搜索问题

Related MCP server: mcp-server-linear

未来工具

  • linear-create-issue :在 Linear 中创建问题

  • linear-update-issue :更新 Linear 中的问题

  • linear-get-issue :获取 Linear 中的问题

  • linear-get-project-issues :获取 Linear 中项目的所有问题

  • linear-add-comment :在 Linear 中向问题添加评论

  • linear-create-project :在 Linear 中创建项目

  • linear-update-project :以 Linear 方式更新项目

未来资源

  • linear-issue:///{issueId} - 查看单个问题的详细信息

  • linear-project:///{projectId} - 查看项目详细信息

  • linear-cycle:///{cycleId} - 查看周期详情(默认为当前周期)

  • linear-team:///{teamId}/issues - 查看团队问题

  • linear-user:///{userId}/assigned - 查看用户分配的问题

  • linear-organization: - 查看组织信息

包子头优先

这个项目使用 Bun,可以直接从 Bun 运行,无需转译(我就是这样使用的)。要使用 Bun 运行它,可以使用以下命令:

bun run index.ts

也就是说,如果您愿意,可以使用 Node 运行它。要使用 Node 运行它,您可以使用以下命令:

node build/index.js

独立可执行文件

Bun 项目可以编译成独立的可执行文件。理论上,这样你无需安装 Bun 即可运行服务器。要将项目编译成独立的可执行文件,可以使用以下命令:

bun build:standalone

您可能需要根据要构建的机器更改构建target 。有关更多详细信息,请参阅 Bun 文档。

通过 JSON 添加到您的 MCP 客户端

要将此服务器添加到您的 MCP 客户端,您可以使用以下 JSON 配置:

Bun Runtime

"linear": {
  "command": "bun",
  "args": [
    "run",
    "/path/to/linear-mcp-server/index.ts"
  ],
  "env": {
    "LINEAR_API_KEY": "lin_api_ABCD"
  }
}

节点运行时

"linear": {
  "command": "node",
  "args": [
    "/path/to/linear-mcp-server/build/index/js"
  ],
  "env": {
    "LINEAR_API_KEY": "lin_api_ABCD"
  }
}

独立可执行文件

"linear": {
  "command": "/path/to/linear-mcp-server/standalone-linear-mcp-server",
  "args": [],
  "env": {
    "LINEAR_API_KEY": "lin_api_ABCD"
  }
}

致谢

这个项目的灵感来自jerhadf/linear-mcp-server我和其他人都遇到了一些问题,这促使我创建了自己的实现。工具和资源列表似乎值得保留。

执照

麻省理工学院

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityInactive
ResponsivenessSyncing

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
    An MCP server for managing Linear issues, projects, teams, and milestones through the Model Context Protocol. It enables users to create, update, and list workspace resources including issue statuses, comments, and user details.
    22
    ISC
  • A
    license
    B
    quality
    C
    maintenance
    An MCP server that integrates with Linear's API, enabling users to manage issues, projects, teams, and comments through natural language. It supports creating, updating, deleting, and searching issues, as well as project and team management.
    25
    2,486
    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/floodfx/mcp-server-linear'

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