Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
29 lines
783 B
TOML
29 lines
783 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 = ["@modelcontextprotocol/server-linear"]
|
|
|
|
[[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.
|
|
"""
|