AgentHubAgentHub

linear-bootstrap

MCP ServerMCP Registry官方收录

io.github.toolwright-adk/linear-bootstrap · v0.1.3

Bootstrap Linear projects from natural language — milestones, epics, issues, and dependencies.

概览

linear-bootstrap 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "linear-bootstrap": {
      "command": "npx",
      "args": [
        "-y",
        "@toolwright-adk/linear-bootstrap"
      ],
      "env": {
        "LINEAR_API_KEY": "<LINEAR_API_KEY>",
        "LLM_API_KEY": "<LLM_API_KEY>",
        "LLM_BASE_URL": "<LLM_BASE_URL>",
        "LLM_MODEL": "<LLM_MODEL>"
      }
    }
  }
}

环境变量

LINEAR_API_KEY必填secret

Linear API key (create at linear.app/settings/api)

LLM_API_KEY必填secret

API key for an OpenAI-compatible LLM provider

LLM_BASE_URL必填

Base URL for the LLM API (e.g. https://openrouter.ai/api/v1)

LLM_MODEL必填

Model ID for plan generation (e.g. anthropic/claude-sonnet-4.6)

相关资源

统一 Manifest

{
  "id": "io.github.toolwright-adk/linear-bootstrap",
  "type": "mcp-server",
  "version": "0.1.3",
  "displayName": "linear-bootstrap",
  "description": "Bootstrap Linear projects from natural language — milestones, epics, issues, and dependencies.",
  "repository": {
    "url": "https://github.com/toolwright-adk/toolwright-monorepo",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@toolwright-adk/linear-bootstrap",
        "version": "0.1.3",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "LINEAR_API_KEY",
            "description": "Linear API key (create at linear.app/settings/api)",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "LLM_API_KEY",
            "description": "API key for an OpenAI-compatible LLM provider",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "LLM_BASE_URL",
            "description": "Base URL for the LLM API (e.g. https://openrouter.ai/api/v1)",
            "isRequired": true
          },
          {
            "name": "LLM_MODEL",
            "description": "Model ID for plan generation (e.g. anthropic/claude-sonnet-4.6)",
            "isRequired": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.toolwright-adk/linear-bootstrap",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.toolwright-adk%2Flinear-bootstrap/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
linear-bootstrap — MCP Server 安装与配置 · AgentHub