linear-mcp-fast 0.2.2__py3-none-any.whl → 0.2.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: linear-mcp-fast
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: Fast MCP server for Linear - reads from Linear.app's local cache on macOS
5
5
  Author: everything-chalna
6
6
  License-Expression: MIT
@@ -26,36 +26,45 @@ Requires-Dist: brotli>=1.0.0
26
26
 
27
27
  Fast, read-only MCP server for Linear that reads from Linear.app's local cache on macOS.
28
28
 
29
- **Why?**
30
- - **Instant**: No API calls, reads directly from local IndexedDB cache
31
- - **Offline**: Works without internet
32
- - **Lower context**: Smaller responses for AI assistants
29
+ ## Why I Built This
33
30
 
34
- **Use with**: Official Linear MCP for write operations (comments, updates).
31
+ While using the official Linear MCP with Claude Code, I noticed that **read operations consumed too much context**. Every issue query returned verbose responses with metadata I didn't need, eating into the AI's context window.
35
32
 
36
- ## Installation
33
+ The problem:
34
+ - Official Linear MCP makes API calls for every read
35
+ - Responses include excessive metadata (full user objects, workflow states, etc.)
36
+ - Context window fills up quickly when exploring issues
37
+ - Slower response times due to network latency
37
38
 
38
- ```bash
39
- pip install linear-mcp-fast
40
- # or
41
- uv pip install linear-mcp-fast
42
- ```
39
+ My solution: **Read directly from Linear.app's local cache.**
40
+
41
+ Linear.app (Electron) syncs all your data to a local IndexedDB. This MCP server reads from that cache, giving you:
42
+
43
+ - **Zero API calls** - Instant reads from disk
44
+ - **Smaller responses** - Only the fields you need
45
+ - **Offline access** - Works without internet
46
+ - **Faster iteration** - No rate limits, no latency
47
+
48
+ ## Requirements
49
+
50
+ - **macOS only** - Linear.app stores its cache at `~/Library/Application Support/Linear/`
51
+ - **Linear.app** installed and opened at least once (to populate the cache)
43
52
 
44
53
  ## Setup
45
54
 
55
+ Use `linear-fast` for reads and the official Linear MCP for writes.
56
+
46
57
  ### Claude Code
47
58
 
48
59
  ```bash
49
- # 1. Add linear-mcp-fast (reads from local cache)
60
+ # Fast reads (this package)
50
61
  claude mcp add linear-fast -- uvx linear-mcp-fast
51
62
 
52
- # 2. Add official Linear MCP (for writes)
63
+ # Writes via official Linear MCP
53
64
  claude mcp add --transport http linear https://mcp.linear.app/mcp
54
65
  ```
55
66
 
56
- Now you have:
57
- - `linear-fast` → Fast reads from local cache
58
- - `linear` → Writes (comments, updates)
67
+ Run `/mcp` to authenticate with Linear.
59
68
 
60
69
  ### Claude Desktop
61
70
 
@@ -76,7 +85,22 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
76
85
  }
77
86
  ```
78
87
 
79
- ### Cursor / VS Code
88
+ ### Cursor
89
+
90
+ Install Linear MCP from [Cursor's MCP tools page](https://cursor.com/mcp), then add linear-fast:
91
+
92
+ ```json
93
+ {
94
+ "mcpServers": {
95
+ "linear-fast": {
96
+ "command": "uvx",
97
+ "args": ["linear-mcp-fast"]
98
+ }
99
+ }
100
+ }
101
+ ```
102
+
103
+ ### VS Code / Windsurf / Others
80
104
 
81
105
  ```json
82
106
  {
@@ -93,24 +117,16 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
93
117
  }
94
118
  ```
95
119
 
96
- ---
97
-
98
- ## Prerequisites
99
-
100
- - **macOS** (Linear.app stores cache in `~/Library/Application Support/Linear/`)
101
- - **Linear.app** installed and opened at least once
102
-
103
- ---
120
+ See [Linear MCP docs](https://developers.linear.app/docs/ai/mcp-server) for Zed, Codex, v0, and other clients.
104
121
 
105
122
  ## Available Tools
106
123
 
107
- ### Reading (linear-fast)
124
+ Tools mirror the official Linear MCP for easy switching:
108
125
 
109
126
  | Tool | Description |
110
127
  |------|-------------|
111
- | `list_issues` | List issues with filters (assignee, team, state, priority) |
112
- | `get_issue` | Get issue details with comments |
113
- | `list_my_issues` | List issues assigned to a user |
128
+ | `list_issues` | List issues with filters (team, state, assignee, priority) |
129
+ | `get_issue` | Get issue details by identifier (e.g., `UK-123`) |
114
130
  | `list_teams` | List all teams |
115
131
  | `get_team` | Get team details |
116
132
  | `list_projects` | List all projects |
@@ -119,44 +135,37 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
119
135
  | `get_user` | Get user details |
120
136
  | `list_issue_statuses` | List workflow states for a team |
121
137
 
122
- ### Writing (official Linear MCP)
138
+ For writes (create issue, add comment, update status), use the official Linear MCP.
123
139
 
124
- Use the official Linear MCP (`linear`) for:
125
- - Creating/updating issues
126
- - Adding comments
127
- - Changing status
140
+ ## How It Works
128
141
 
129
- ---
142
+ ```
143
+ Linear.app (Electron)
144
+ ↓ syncs data to local cache
145
+ IndexedDB (LevelDB)
146
+ ~/Library/Application Support/Linear/IndexedDB/...
147
+ ↓ read by
148
+ linear-mcp-fast
149
+
150
+ Fast, offline access to issues, teams, users, projects
151
+ ```
130
152
 
131
153
  ## Troubleshooting
132
154
 
133
- ### "Linear database not found"
155
+ **"Linear database not found"**
134
156
 
135
- Linear.app needs to be installed and opened at least once:
157
+ Linear.app must be installed and opened at least once:
136
158
  ```bash
137
159
  ls ~/Library/Application\ Support/Linear/IndexedDB/
138
160
  ```
139
161
 
140
- ### Data seems stale
162
+ **Data seems stale**
141
163
 
142
- Local cache is updated when Linear.app syncs. Open Linear.app to refresh.
164
+ The local cache updates when Linear.app syncs. Open Linear.app to refresh.
143
165
 
144
- ---
145
-
146
- ## How It Works
147
-
148
- ```
149
- Linear.app (Electron)
150
- ↓ syncs to
151
- IndexedDB (LevelDB format)
152
- ~/Library/Application Support/Linear/IndexedDB/...
153
- ↓ read by
154
- linear-mcp-fast
155
- ↓ provides
156
- Fast read-only access to issues, users, teams, comments
157
- ```
166
+ **Returns 0 issues**
158
167
 
159
- ---
168
+ Multiple IndexedDB databases may exist. Version 0.2.2+ automatically finds the correct one.
160
169
 
161
170
  ## License
162
171
 
@@ -32,8 +32,8 @@ tools_and_utilities/benchmark.py,sha256=fyD5U6yI7Y0TkyhYtvvaHyk9Y2jJe2yxYWoFPQWy
32
32
  tools_and_utilities/ccl_chrome_audit.py,sha256=irGyYJae0apZDZCn23jMKmY3tYQgWyZEL8vdUBcHLZk,24695
33
33
  tools_and_utilities/dump_indexeddb_details.py,sha256=ipNWLKPQoSNhCtPHKWvMWpKu8FhCnvc4Rciyx-90boI,2298
34
34
  tools_and_utilities/dump_leveldb.py,sha256=hj7QnOHG64KK2fKsZ9qQOVqUUmHUtxUZqPYl4EZJO9U,1882
35
- linear_mcp_fast-0.2.2.dist-info/METADATA,sha256=qXx8bKX05IuBwJQNjme1wB4aBhoJaioP5-SZAbGTHJY,3812
36
- linear_mcp_fast-0.2.2.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
37
- linear_mcp_fast-0.2.2.dist-info/entry_points.txt,sha256=Aa98tAkWz_08mS_SRyfyx0k3PuMBQoMygT88HCKMyWk,57
38
- linear_mcp_fast-0.2.2.dist-info/top_level.txt,sha256=j-O2BoBpFBpGyTl2V1cp0ZjxZAQwpkweeNxG4BcQ7io,73
39
- linear_mcp_fast-0.2.2.dist-info/RECORD,,
35
+ linear_mcp_fast-0.2.4.dist-info/METADATA,sha256=i4TxcIFR-TxaJu4nbflPJvR2DdS-433LalZ0eZsX-bo,4728
36
+ linear_mcp_fast-0.2.4.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
37
+ linear_mcp_fast-0.2.4.dist-info/entry_points.txt,sha256=Aa98tAkWz_08mS_SRyfyx0k3PuMBQoMygT88HCKMyWk,57
38
+ linear_mcp_fast-0.2.4.dist-info/top_level.txt,sha256=j-O2BoBpFBpGyTl2V1cp0ZjxZAQwpkweeNxG4BcQ7io,73
39
+ linear_mcp_fast-0.2.4.dist-info/RECORD,,