add-linear
SolidAdd Linear project management MCP integration to Deus. Gives host-side Claude Code sessions read/write access to Linear issues, projects, cycles, and workflow states via @tacticlaunch/mcp-linear.
AI & Automation 48 stars
3 forks Updated today MIT
Install
Quality Score: 81/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Add Linear
This skill adds Linear project management tools to host-side Claude Code sessions via the `@tacticlaunch/mcp-linear` MCP server. Once installed, you can create/update issues, manage projects and cycles, search your backlog, and track workflow states from conversation.
## Phase 1: Pre-flight
### Check if already configured
```bash
grep -q '"linear"' ~/.claude/mcp.json 2>/dev/null && echo "ALREADY_CONFIGURED" || echo "NOT_CONFIGURED"
grep -q "LINEAR_API_TOKEN" ~/deus/.env 2>/dev/null && echo "TOKEN_SET" || echo "NO_TOKEN"
```
- If both configured and token set, skip to Phase 3 (Verify).
- If configured but no token, skip to Phase 2 step 1 only.
- Otherwise, continue to Phase 2.
## Phase 2: Install and Configure
### Step 1: Get API token
Tell the user:
> I need a Linear Personal API key. This is a one-time setup:
>
> 1. Open Linear → Settings → API → Personal API keys
> 2. Click "Create key", give it a label like "Deus"
> 3. Copy the token (format: `lin_api_...`) and paste it here
Once the user provides the token:
Add to `~/deus/.env`:
```bash
grep -q LINEAR_API_TOKEN ~/deus/.env || echo 'LINEAR_API_TOKEN=<pasted-value>' >> ~/deus/.env
```
Verify it's gitignored:
```bash
cd ~/deus && git check-ignore .env || echo "WARNING: .env is NOT gitignored"
```
### Step 2: Configure MCP
Read `~/.claude/mcp.json`, merge the new entry into the existing `mcpServers` object:
```json
"linear": {
"command": "/bin/sh",
"args": ["-c", "set -a && . $HOME/deus/.env &&...
Details
- Author
- sliamh11
- Repository
- sliamh11/Deus
- Created
- 4 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
linear
Managing Linear issues, projects, and teams. Use when working with Linear tasks, creating issues, updating status, querying projects, or managing team workflows.
118 Updated 1 weeks ago
wrsmith108 AI & Automation Solid
add-asana
Add Asana project management MCP integration to Deus. Gives host-side Claude Code sessions read/write access to Asana tasks, projects, sections, and tags via @roychri/mcp-server-asana.
48 Updated today
sliamh11 AI & Automation Solid
ops-linear
Linear command center. Shows current sprint, creates/updates issues, manages priorities, syncs with GSD phases.
20 Updated today
Lifecycle-Innovations-Limited