mirror of
https://github.com/RightNow-AI/openfang.git
synced 2026-08-14 00:47:51 +00:00
29 lines
764 B
TOML
29 lines
764 B
TOML
id = "linear"
|
|
name = "Linear"
|
|
description = "Manage Linear issues, projects, cycles, and teams through the MCP server"
|
|
category = "devtools"
|
|
icon = "📐"
|
|
tags = ["project-management", "issues", "agile", "tracking", "sprint"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["-y", "linear-mcp"]
|
|
|
|
[[required_env]]
|
|
name = "LINEAR_API_KEY"
|
|
label = "Linear API Key"
|
|
help = "A personal API key from your Linear account settings"
|
|
is_secret = true
|
|
get_url = "https://linear.app/settings/api"
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Open Linear and go to Settings > API (https://linear.app/settings/api).
|
|
2. Click 'Create key' to generate a new personal API key.
|
|
3. Paste the key into the LINEAR_API_KEY field above.
|
|
"""
|