Install
npx skillscat add pacphi/sindri/v2-docker-lib-extensions-linear-mcp-resources Install via the SkillsCat registry.
SKILL.md
Linear MCP Server
This extension provides integration with Linear's project management system via the official Linear Remote MCP server with OAuth authentication.
Features
- Query Linear issues, projects, and teams
- Create and update issues
- Manage issue status, priority, and labels
- Search across your Linear workspace
- Real-time access to project management data
- No API key required - uses secure OAuth flow
Authentication
This extension uses Linear's official OAuth-based MCP server. On first use:
- Run
/mcpin Claude Code - Click to authenticate with Linear
- Authorize the connection in your browser
- Start using Linear tools immediately
The OAuth token is stored securely by Claude Code.
Configuration
The Linear MCP server is automatically added to your user-scope configuration at ~/.claude.json:
{
"mcpServers": {
"linear": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.linear.app/sse"]
}
}
}Manual Installation
If automatic installation fails, add manually:
claude mcp add-json --scope user linear '{"command":"npx","args":["-y","mcp-remote","https://mcp.linear.app/sse"]}'Usage
Once authenticated, you can ask Claude to:
- "List my Linear issues"
- "Create a new issue in the Backend project"
- "Update issue ABC-123 to In Progress"
- "Search for issues about authentication"
- "Show me issues assigned to me"
- "What's the status of my current sprint?"
Available Tools
The MCP server exposes these tools:
search_issues- Search for issues by queryget_issue- Get details of a specific issuecreate_issue- Create a new issueupdate_issue- Update an existing issuelist_teams- List all teamslist_projects- List projects in a teamget_viewer- Get current user info
Troubleshooting
Re-authenticate
If you need to re-authenticate:
- Run
/mcpin Claude Code - Find the Linear server
- Click "Authenticate" or "Reconnect"
Check Status
claude mcp list --scope userRemove and Reinstall
claude mcp remove --scope user linear
extension-manager reinstall linear-mcp